/********************************************************************* * * 文 件: APPWBS.h 数据采集ims启动文件 * * 版权所有: Shanghai Baosight Software Co., Ltd. * * 概述: * : * : * * 版本历史 * 1.0 2019-01-15 rmbai 增加注释 * *********************************************************************/ #ifndef _H_ZHD_H #define _H_ZHD_H #include #include #include #include #include namespace baosight { /********************************************************************* * 类 名: zhd * 版权所有: Shanghai Baosight Software Co., Ltd. * 类 职 责: * : * : * 版本历史 * 1.0 2019-01-15 rmbai 增加注释 * *********************************************************************/ class zhd : public Component { public : zhd(); /********************************************************************** * 概述: 程序启动入口 * 函数名: start * 返回值: int * 参数列表: 参数类型 取值范围 描述 * * 版本历史 * 1.0 2010-09-02 echo_li 增加注释 * **********************************************************************/ virtual int start(); virtual ~zhd(); private: MessageICEPtr m_zhd_server; private: ConnectionMag* pconMag; }; }; #endif