中航光电的中间件仓库

CConfigLocal.h 331B

12345678910111213141516171819202122
  1. #pragma once
  2. #include <set>
  3. #include <string>
  4. using namespace std;
  5. class CConfigLocal
  6. {
  7. public:
  8. CConfigLocal();
  9. ~CConfigLocal();
  10. void load();
  11. bool isContains(char* p_tel);// true contains , false not contain
  12. void getCallNumFromSipAddr(char* p_sip_uri, char* p_tel_buf);
  13. private:
  14. int m_res_num;
  15. set<string> m_ResSet;
  16. };