| | |
| | | void deleteAllReport(); |
| | | |
| | | // 从文件中加载CVariable列表 |
| | | int loadVarialbleList(const char* pszFilepath); |
| | | int loadVarialbles(const char* pszFilepath); |
| | | |
| | | // 取得CVariable列表 |
| | | std::vector<SERVO::CVariable*>& getVariables(); |
| | | |
| | | // 取得指定Variable |
| | | SERVO::CVariable* getVariable(int variableId); |
| | | |
| | | // 从文件中加载CReport表表 |
| | | int loadReports(const char* pszFilepath); |
| | | |
| | | std::vector<SERVO::CReport*>& getReports(); |
| | | |
| | | void setListener(SECSListener listener); |
| | | unsigned OnCimWork(); |
| | |
| | | inline void Unlock() { LeaveCriticalSection(&m_criticalSection); } |
| | | int onRecvMsg(IMessage* pMessage); |
| | | void clearAllVariabel(); |
| | | std::vector<int> parseVidList(CString& strNums); |
| | | void clearAllReport(); |
| | | |
| | | private: |
| | | CModel* m_pModel; |
| | |
| | | |
| | | // CVariable vector |
| | | std::vector<SERVO::CVariable*> m_variabels; |
| | | |
| | | // CReport vector |
| | | std::vector<SERVO::CReport*> m_reports; |
| | | }; |
| | | |