56 lines
1.2 KiB
C++
56 lines
1.2 KiB
C++
/*********************************************************************
|
|
*
|
|
* 文 件: zdp.h 数据采集zdp启动文件
|
|
*
|
|
* 版权所有: Shanghai Baosight Software Co., Ltd.
|
|
*
|
|
* 概述:
|
|
* :
|
|
* :
|
|
*
|
|
* 版本历史
|
|
* 1.0 2010-09-02 echo_li 增加注释
|
|
*
|
|
*********************************************************************/
|
|
#ifndef _H_ZNODE_H
|
|
#define _H_ZNODE_H
|
|
|
|
#include <pace/pace.h>
|
|
#include <pace/Component.h>
|
|
#include <log4cplus/LOG.h>
|
|
#include <zdp/ZdpICEI.h>
|
|
#include <glob/ConnectionMag.h>
|
|
|
|
|
|
namespace baosight
|
|
{
|
|
|
|
/*********************************************************************
|
|
* 类 名: zdp
|
|
* 版权所有: Shanghai Baosight Software Co., Ltd.
|
|
* 类 职 责:
|
|
*
|
|
*********************************************************************/
|
|
class zdp : public Component
|
|
{
|
|
public :
|
|
zdp();
|
|
/**********************************************************************
|
|
* 概述: 程序启动入口
|
|
* 函数名: start
|
|
* 返回值: int
|
|
* 参数列表: 参数类型 取值范围 描述
|
|
*
|
|
**********************************************************************/
|
|
virtual int start();
|
|
virtual ~zdp();
|
|
|
|
private:
|
|
MessageICEPtr m_zdp_server;
|
|
private:
|
|
ConnectionMag* pconMag;
|
|
|
|
};
|
|
};
|
|
#endif
|