2023-09-19 11:39:57 +02:00
|
|
|
#include "../includes/Example.hpp"
|
|
|
|
|
|
|
|
Example::Example() { std::cout << "Hello, world!\n"; }
|
2023-10-10 16:09:52 +02:00
|
|
|
|
2023-10-10 18:14:28 +02:00
|
|
|
Example::~Example() {}
|
|
|
|
|
2023-10-10 16:09:52 +02:00
|
|
|
Example::Example(const Example &) {}
|
|
|
|
|
2023-10-10 19:04:43 +02:00
|
|
|
const Example &Example::operator=(const Example &src) {
|
|
|
|
if (this == &src) {
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|