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:
|
|||
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֵ<EFBFBD>Ļ<EFBFBD><C4BB><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
IceUtil::Mutex m_mutexValue;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
#endif
|