26 lines
454 B
C++
26 lines
454 B
C++
#ifndef __TimerWatchI_h__
|
|
#define __TimerWatchI_h__
|
|
|
|
#include <imultilink/TimerWatch.h>
|
|
#include <glob/ProxyMag.h>
|
|
|
|
|
|
|
|
class TimerWatchI : virtual public ::iPlature::iMultiLink::TimerWatchInterface
|
|
{
|
|
public:
|
|
TimerWatchI();
|
|
|
|
virtual ~TimerWatchI();
|
|
virtual void TimerWatch(const ::std::string&,
|
|
const ::iPlature::iMultiLink::MAPTAGVALUE&,
|
|
const Ice::Current&);
|
|
|
|
|
|
private:
|
|
// 保护参数值的互斥体
|
|
IceUtil::Mutex m_mutexValue;
|
|
};
|
|
|
|
#endif
|