init-projects/cpp/src/Example.cpp

16 lines
273 B
C++
Raw Normal View History

2023-09-19 11:39:57 +02:00
#include "../includes/Example.hpp"
Example::Example() { std::cout << "Hello, world!\n"; }
2023-10-10 18:14:28 +02:00
Example::~Example() {}
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;
}