53 lines
1.1 KiB
C++
53 lines
1.1 KiB
C++
/*********************************************************************
|
|
*
|
|
* 文 件: appgtm.h 定时器入口
|
|
*
|
|
* 版权所有: Shanghai Baosight Software Co., Ltd.
|
|
*
|
|
* 概述:
|
|
* :
|
|
* :
|
|
*
|
|
* 版本历史
|
|
* 1.0 2010-09-01 echo_li 增加注释
|
|
*
|
|
*********************************************************************/
|
|
|
|
#ifndef H_APPGTM_H
|
|
#define H_APPGTM_H
|
|
|
|
#include <pace/pace.h>
|
|
#include <pace/Component.h>
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include <string>
|
|
#include <gtm/GlobalTimerICEI.h>
|
|
#include <glob/ProxyMag.h>
|
|
|
|
namespace baosight
|
|
{
|
|
|
|
/*********************************************************************
|
|
* 类 名: appgtm
|
|
* 版权所有: Shanghai Baosight Software Co., Ltd.
|
|
* 类 职 责:
|
|
* :
|
|
* :
|
|
* 版本历史
|
|
* 1.0 2010-09-01 echo_li 增加注释
|
|
*
|
|
*********************************************************************/
|
|
class appgtm : public Component
|
|
{
|
|
private:
|
|
GlobalTimerICEPtr mp_gtm_server;
|
|
public :
|
|
appgtm();
|
|
virtual ~appgtm();
|
|
virtual int start();
|
|
};
|
|
};
|
|
|
|
#endif
|
|
|