summaryrefslogtreecommitdiff
path: root/cmnd.h
blob: 2eb1db256912f20b9107c56c13e30a636ed71b53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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