28 lines
398 B
C
28 lines
398 B
C
|
|
#ifndef _H_APPWDT_H
|
||
|
|
#define _H_APPWDT_H
|
||
|
|
|
||
|
|
#include <pace/pace.h>
|
||
|
|
#include <pace/Component.h>
|
||
|
|
#include <log4cplus/LOG.h>
|
||
|
|
#include <wdt/WatchDogICEI.h>
|
||
|
|
#include <glob/ConnectionMag.h>
|
||
|
|
|
||
|
|
namespace baosight
|
||
|
|
{
|
||
|
|
class appwdt : public Component
|
||
|
|
{
|
||
|
|
public :
|
||
|
|
appwdt();
|
||
|
|
virtual ~appwdt();
|
||
|
|
virtual int start();
|
||
|
|
|
||
|
|
private:
|
||
|
|
MessageICEPtr m_wdt_server;
|
||
|
|
|
||
|
|
private:
|
||
|
|
ConnectionMag* pconMag;
|
||
|
|
|
||
|
|
};
|
||
|
|
};
|
||
|
|
#endif
|