#ifndef PROJECT_EXAMPLE_HPP #define PROJECT_EXAMPLE_HPP 1 #include struct Example { Example(); // constructor Example(const Example &); // copy constructor virtual ~Example(); // destructor }; #endif