summaryrefslogtreecommitdiff
path: root/cmnd.h
diff options
context:
space:
mode:
Diffstat (limited to 'cmnd.h')
-rw-r--r--cmnd.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/cmnd.h b/cmnd.h
new file mode 100644
index 0000000..2eb1db2
--- /dev/null
+++ b/cmnd.h
@@ -0,0 +1,18 @@
+// class cmnd declaration.
+
+#ifndef CMND_H
+#define CMND_H
+
+#include "incl.h"
+
+using namespace std;
+
+class cmnd
+{
+public:
+ // public methods:
+ explicit cmnd( ); // a standard constructor.
+ ~cmnd( );
+};
+
+#endif