/********************************************************************* * * 版权所有: Shanghai Baosight Software Co., Ltd. * * 概述: * 版本历史 * 1.0 2014-08-18 jamie 增加注释 * *********************************************************************/ #ifndef _H_PMG_H #define _H_PMG_H #include #include #include #include #include namespace baosight { /********************************************************************* * 类 名: apppmg * 版权所有: Shanghai Baosight Software Co., Ltd. * 类 职 责: * : * : * 版本历史 * 1.0 2010-09-02 echo_li 增加注释 * *********************************************************************/ class apppmg : public Component { public : apppmg(); virtual ~apppmg(); /********************************************************************** * 概述: 程序启动入口 * 函数名: start * 返回值: int * 参数列表: 参数类型 取值范围 描述 * * 版本历史 * 1.0 2010-09-02 echo_li 增加注释 * **********************************************************************/ virtual int start(); private: MessageICEPtr m_pmg_server; private: ConnectionMag* pconMag; }; }; #endif