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