50 lines
1.3 KiB
C
50 lines
1.3 KiB
C
|
|
/*********************************************************************
|
|||
|
|
*
|
|||
|
|
* 文 件: eqpalg.h
|
|||
|
|
*
|
|||
|
|
* 版权所有: Shanghai Baosight Software Co., Ltd.
|
|||
|
|
*
|
|||
|
|
*********************************************************************/
|
|||
|
|
#ifndef _H_EQ_ALG_H
|
|||
|
|
#define _H_EQ_ALG_H
|
|||
|
|
|
|||
|
|
#include <pace/pace.h>
|
|||
|
|
#include <pace/Component.h>
|
|||
|
|
#include <log4cplus/LOG.h>
|
|||
|
|
#include <eqpalg/EqpAlgICEI.h>
|
|||
|
|
#include <glob/ConnectionMag.h>
|
|||
|
|
#include <iostream>
|
|||
|
|
|
|||
|
|
|
|||
|
|
using namespace std;
|
|||
|
|
|
|||
|
|
/*********************************************************************
|
|||
|
|
* 类 名: baosight
|
|||
|
|
* 版权所有: Shanghai Baosight Software Co., Ltd.
|
|||
|
|
* 类 职 责:负责应用程序的启动
|
|||
|
|
*
|
|||
|
|
*********************************************************************/
|
|||
|
|
namespace baosight{
|
|||
|
|
class eqpalg : public Component
|
|||
|
|
{
|
|||
|
|
public :
|
|||
|
|
eqpalg();
|
|||
|
|
virtual ~eqpalg();
|
|||
|
|
/**********************************************************************
|
|||
|
|
* 概述: 应用程序启动入口
|
|||
|
|
* 函数名: start
|
|||
|
|
* 返回值: int
|
|||
|
|
* 参数列表: 参数类型 取值范围 描述
|
|||
|
|
*
|
|||
|
|
**********************************************************************/
|
|||
|
|
virtual int start();
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
MessageICEPtr eqpalg_server;
|
|||
|
|
ConnectionMag* mp_conMag;
|
|||
|
|
|
|||
|
|
};
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
#endif
|