17 lines
461 B
Plaintext
17 lines
461 B
Plaintext
//---------------------------------------------------------------------------
|
|
#ifndef CPrinterH
|
|
#define CPrinterH
|
|
//---------------------------------------------------------------------------
|
|
#include <string>
|
|
//---------------------------------------------------------------------------
|
|
class CPrinter
|
|
{
|
|
private:
|
|
protected:
|
|
public:
|
|
CPrinter();
|
|
virtual ~CPrinter();
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
#endif
|