Lines Matching refs:CNfcParam

43 class CNfcParam : public string {  class
45 CNfcParam();
46 CNfcParam(const char* name, const string& value);
47 CNfcParam(const char* name, unsigned long value);
48 virtual ~CNfcParam();
58 class CNfcConfig : public vector<const CNfcParam*> {
68 const CNfcParam* find(const char* p_name) const;
76 void add(const CNfcParam* pParam);
77 list<const CNfcParam*> m_list;
186 CNfcParam* pParam = NULL; in readConfig()
311 pParam = new CNfcParam(token.c_str(), strValue); in readConfig()
313 pParam = new CNfcParam(token.c_str(), numValue); in readConfig()
323 pParam = new CNfcParam(token.c_str(), strValue); in readConfig()
417 const CNfcParam* pParam = find(name); in getValue()
444 const CNfcParam* pParam = find(name); in getValue()
469 const CNfcParam* pParam = find(name); in getValue()
490 const CNfcParam* pParam = find(name); in getValue()
509 const CNfcParam* CNfcConfig::find(const char* p_name) const { in find()
554 void CNfcConfig::add(const CNfcParam* pParam) { in add()
559 for (list<const CNfcParam*>::iterator it = m_list.begin(), in add()
581 for (list<const CNfcParam*>::iterator it = m_list.begin(), in moveFromList()
614 CNfcParam::CNfcParam() : m_numValue(0) {} in CNfcParam() function in CNfcParam
625 CNfcParam::~CNfcParam() {} in ~CNfcParam()
636 CNfcParam::CNfcParam(const char* name, const string& value) in CNfcParam() function in CNfcParam
648 CNfcParam::CNfcParam(const char* name, unsigned long value) in CNfcParam() function in CNfcParam
703 const CNfcParam* pParam = rConfig.find(name); in GetNumValue()