/********************************************************************* * * 文 件: RuleEngine.h 数据采集ims启动文件 * * 版权所有: Shanghai Baosight Software Co., Ltd. * * 概述: * : * : * * 版本历史 * 1.0 2019-01-15 rmbai 增加注释 * *********************************************************************/ #ifndef _H_RuleEngine_H #define _H_RuleEngine_H #include #include #include #include #include #include #include #include using namespace baosight; using namespace std; /********************************************************************* * 类 名: RuleEngine * 版权所有: Shanghai Baosight Software Co., Ltd. * 类 职 责: * : * : * 版本历史 * 1.0 2019-01-15 rmbai 增加注释 * *********************************************************************/ class RuleEngine { public : RuleEngine(); virtual ~RuleEngine(); void DataByiMultiLink(const ::iPlature::iMultiLink::MAPTAGVALUE& tagPairs); string DataByCache(void); private: MessageICEPrx pubprx; DataAdapter* mp_dadapter; BinaryTele* p_tele; }; #endif