#ifndef EXAMPLE_HPP #define EXAMPLE_HPP class Example { public: Example(); virtual ~Example(); Example(const Example& other); Example& operator=(const Example& other); private: }; #endif /* #ifndef EXAMPLE_HPP */