| 12345678910111213141516171819202122 |
- #pragma once
- #include <set>
- #include <string>
- using namespace std;
- class CConfigLocal
- {
- public:
- CConfigLocal();
- ~CConfigLocal();
- void load();
- bool isContains(char* p_tel);// true contains , false not contain
- void getCallNumFromSipAddr(char* p_sip_uri, char* p_tel_buf);
- private:
- int m_res_num;
- set<string> m_ResSet;
- };
|