#ifndef TARGET_H #define TARGET_H #include class Target { public: Target(); virtual ~Target(); private: }; #endif