Files
Tools_CPP/devices/Printers/Printer.~h
2024-11-01 12:23:13 +05:00

17 lines
461 B
Plaintext

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