cdev-1.7.2n

This commit is contained in:
2022-12-13 12:44:04 +01:00
commit b3b88fc333
1357 changed files with 338883 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
#include <cdevClientService.h>
#ifndef MONITOR_TEST_SERVICE_API
#define MONITOR_TEST_SERVICE_API
#endif
// *****************************************************************************
// * newMonitorTestService :
// * This function will be called by the cdevSystem object to create an
// * initial instance of the MonitorTestService.
// *****************************************************************************
extern "C" MONITOR_TEST_SERVICE_API cdevService * newMonitorTestService ( char * name, cdevSystem * system );
// *****************************************************************************
// * class MonitorTestService :
// * This class simply inherits from the cdevClientService and must define
// * only a constructor and destructor.
// *****************************************************************************
class MonitorTestService : public cdevClientService
{
public:
MonitorTestService ( char * name, cdevSystem & system = cdevSystem::defaultSystem());
protected:
int RESULT_CODE_TAG;
virtual ~MonitorTestService ( void ) {};
virtual void fireCallback ( int status, cdevTranObj &xobj, cdevData *resultData, int partialTransaction = 0 );
};