summaryrefslogtreecommitdiff
path: root/src/cmnd.h
blob: b5a1d4df6975524a67fea8d7613608b4847c9696 (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