Lines Matching refs:CNfcParam
36 class CNfcParam : public string class
39 CNfcParam();
40 CNfcParam(const char* name, const string& value);
41 CNfcParam(const char* name, unsigned long value);
42 virtual ~CNfcParam();
51 class CNfcConfig : public vector<const CNfcParam*>
61 const CNfcParam* find(const char* p_name) const;
68 void add(const CNfcParam* pParam);
69 list<const CNfcParam*> m_list;
167 CNfcParam* pParam = NULL; in readConfig()
305 pParam = new CNfcParam(token.c_str(), strValue); in readConfig()
307 pParam = new CNfcParam(token.c_str(), numValue); in readConfig()
318 pParam = new CNfcParam(token.c_str(), strValue); in readConfig()
402 const CNfcParam* pParam = find(name); in getValue()
429 const CNfcParam* pParam = find(name); in getValue()
453 const CNfcParam* pParam = find(name); in getValue()
474 const CNfcParam* CNfcConfig::find(const char* p_name) const in find()
525 void CNfcConfig::add(const CNfcParam* pParam) in add()
532 …for (list<const CNfcParam*>::iterator it = m_list.begin(), itEnd = m_list.end(); it != itEnd; ++it) in add()
556 …for (list<const CNfcParam*>::iterator it = m_list.begin(), itEnd = m_list.end(); it != itEnd; ++it) in moveFromList()
589 CNfcParam::CNfcParam() : in CNfcParam() function in CNfcParam
603 CNfcParam::~CNfcParam() in ~CNfcParam()
616 CNfcParam::CNfcParam(const char* name, const string& value) : in CNfcParam() function in CNfcParam
632 CNfcParam::CNfcParam(const char* name, unsigned long value) : in CNfcParam() function in CNfcParam
671 const CNfcParam* pParam = rConfig.find(name); in GetNumValue()