28 lines
513 B
C
28 lines
513 B
C
|
|
#ifndef __EventWatchI_h__
|
|||
|
|
#define __EventWatchI_h__
|
|||
|
|
|
|||
|
|
#include <imultilink/EventWatch.h>
|
|||
|
|
#include <opcrcv/CL1L2OPCTransform.h>
|
|||
|
|
|
|||
|
|
class EventWatchI : virtual public ::iPlature::iMultiLink::EventWatchInterface
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
|
|||
|
|
EventWatchI();
|
|||
|
|
|
|||
|
|
virtual ~EventWatchI();
|
|||
|
|
|
|||
|
|
virtual void EventWatch(const ::iPlature::iMultiLink::MAPTAGVALUE&,
|
|||
|
|
const ::std::string&,
|
|||
|
|
const ::std::string&,
|
|||
|
|
const Ice::Current&);
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֵ<EFBFBD>Ļ<EFBFBD><C4BB><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
IceUtil::Mutex m_mutexValue;
|
|||
|
|
CL1L2OPCTransform *mp_opcTransform;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
#endif
|