reference to destructor and copy constructor

This commit is contained in:
Mylloon 2023-10-10 16:09:52 +02:00
parent c8cef29999
commit a6265a4442
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -1,3 +1,7 @@
#include "../includes/Example.hpp"
Example::Example() { std::cout << "Hello, world!\n"; }
Example::Example(const Example &) {}
Example::~Example() {}