summaryrefslogtreecommitdiff
path: root/src/cmnd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmnd.h')
-rwxr-xr-xsrc/cmnd.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/cmnd.h b/src/cmnd.h
new file mode 100755
index 0000000..b5a1d4d
--- /dev/null
+++ b/src/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