diff options
Diffstat (limited to 'Help.h')
-rw-r--r-- | Help.h | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -0,0 +1,14 @@ +#ifndef HELP_H
+#define HELP_H
+
+#include <iostream>
+
+class Help {
+public:
+ Help();
+ virtual ~Help();
+
+ void dispGeneral();
+};
+
+#endif // HELP_H
|