Lines Matching refs:CNfcParam
42 class CNfcParam : public string { class
44 CNfcParam();
45 CNfcParam(const char* name, const string& value);
46 CNfcParam(const char* name, unsigned long value);
47 virtual ~CNfcParam();
57 class CNfcConfig : public vector<const CNfcParam*> {
66 const CNfcParam* find(const char* p_name) const;
74 void add(const CNfcParam* pParam);
75 list<const CNfcParam*> m_list;
184 CNfcParam* pParam = NULL; in readConfig()
297 pParam = new CNfcParam(token.c_str(), strValue); in readConfig()
299 pParam = new CNfcParam(token.c_str(), numValue); in readConfig()
309 pParam = new CNfcParam(token.c_str(), strValue); in readConfig()
390 const CNfcParam* pParam = find(name); in getValue()
413 const CNfcParam* pParam = find(name); in getValue()
434 const CNfcParam* pParam = find(name); in getValue()
453 const CNfcParam* CNfcConfig::find(const char* p_name) const { in find()
497 void CNfcConfig::add(const CNfcParam* pParam) { in add()
502 for (list<const CNfcParam *>::iterator it = m_list.begin(), in add()
524 for (list<const CNfcParam *>::iterator it = m_list.begin(), in moveFromList()
557 CNfcParam::CNfcParam() : m_numValue(0) {} in CNfcParam() function in CNfcParam
568 CNfcParam::~CNfcParam() {} in ~CNfcParam()
579 CNfcParam::CNfcParam(const char* name, const string& value) in CNfcParam() function in CNfcParam
591 CNfcParam::CNfcParam(const char* name, unsigned long value) in CNfcParam() function in CNfcParam
623 const CNfcParam* pParam = rConfig.find(name); in GetNumValue()