reference to destructor and copy constructor
This commit is contained in:
parent
c8cef29999
commit
a6265a4442
1 changed files with 4 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
#include "../includes/Example.hpp"
|
||||
|
||||
Example::Example() { std::cout << "Hello, world!\n"; }
|
||||
|
||||
Example::Example(const Example &) {}
|
||||
|
||||
Example::~Example() {}
|
||||
|
|
Loading…
Reference in a new issue