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()
316 pParam = new CNfcParam(token.c_str(), strValue); in readConfig()
318 pParam = new CNfcParam(token.c_str(), numValue); in readConfig()
329 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()
468 const CNfcParam* pParam = find(name); in getValue()
489 const CNfcParam* CNfcConfig::find(const char* p_name) const in find()
540 void CNfcConfig::add(const CNfcParam* pParam) in add()
547 …for (list<const CNfcParam*>::iterator it = m_list.begin(), itEnd = m_list.end(); it != itEnd; ++it) in add()
571 …for (list<const CNfcParam*>::iterator it = m_list.begin(), itEnd = m_list.end(); it != itEnd; ++it) in moveFromList()
604 CNfcParam::CNfcParam() : in CNfcParam() function in CNfcParam
618 CNfcParam::~CNfcParam() in ~CNfcParam()
631 CNfcParam::CNfcParam(const char* name, const string& value) : in CNfcParam() function in CNfcParam
647 CNfcParam::CNfcParam(const char* name, unsigned long value) : in CNfcParam() function in CNfcParam
686 const CNfcParam* pParam = rConfig.find(name); in GetNumValue()