490d36e
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef HELP_H #define HELP_H #include <iostream> class Help { public: Help(); virtual ~Help(); void dispGeneral(); }; #endif // HELP_H