Home | History | Annotate | Download | only in adaptation

Lines Matching refs:CNfcParam

36 class CNfcParam : public string
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;
305 pParam = new CNfcParam(token.c_str(), strValue);
307 pParam = new CNfcParam(token.c_str(), numValue);
318 pParam = new CNfcParam(token.c_str(), strValue);
402 const CNfcParam* pParam = find(name);
429 const CNfcParam* pParam = find(name);
453 const CNfcParam* pParam = find(name);
474 const CNfcParam* CNfcConfig::find(const char* p_name) const
525 void CNfcConfig::add(const CNfcParam* pParam)
532 for (list<const CNfcParam*>::iterator it = m_list.begin(), itEnd = m_list.end(); it != itEnd; ++it)
556 for (list<const CNfcParam*>::iterator it = m_list.begin(), itEnd = m_list.end(); it != itEnd; ++it)
582 ** Function: CNfcParam::CNfcParam()
589 CNfcParam::CNfcParam() :
596 ** Function: CNfcParam::~CNfcParam()
603 CNfcParam::~CNfcParam()
609 ** Function: CNfcParam::CNfcParam()
616 CNfcParam::CNfcParam(const char* name, const string& value) :
625 ** Function: CNfcParam::CNfcParam()
632 CNfcParam::CNfcParam(const char* name, unsigned long value) :
671 const CNfcParam* pParam = rConfig.find(name);