18 lines
189 B
C++
18 lines
189 B
C++
|
|
|
|
#ifndef _CSERVICE_H_
|
|
#define _CSERVICE_H_
|
|
|
|
class COleDsService: public COleDsObject
|
|
{
|
|
|
|
public:
|
|
COleDsService( IUnknown* );
|
|
COleDsService( );
|
|
~COleDsService( );
|
|
|
|
};
|
|
|
|
#endif
|
|
|