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