19 lines
219 B
C++
19 lines
219 B
C++
|
|
|
|
#ifndef _PRINTDEVICE_H_
|
|
#define _PRINTDEVICE_H_
|
|
|
|
class COleDsPrintDevice: public COleDsObject
|
|
{
|
|
|
|
public:
|
|
COleDsPrintDevice( IUnknown* );
|
|
COleDsPrintDevice( );
|
|
~COleDsPrintDevice( );
|
|
|
|
public:
|
|
};
|
|
|
|
#endif
|
|
|