#include <pf.h>


Definition at line 152 of file pf.h.
Public Member Functions | |
| pf_ValueList () | |
| pf_ValueList (const vector< pf_Value > &a_vec) | |
| virtual | ~pf_ValueList () |
| void | Add (const pf_Value &a_val) |
| const pf_Value & | At (unsigned int i) const |
| unsigned int | size () const |
Public Attributes | |
| vector< pf_Value > | m_vec |
Private Attributes | |
| log_CLASSID_m | |
| pf_ValueList::pf_ValueList | ( | ) |
Definition at line 283 of file pf.cpp.
00284 : pf_Component(0), 00285 m_vec(a_vec) { 00286 //Empty 00287 }
| pf_ValueList::~pf_ValueList | ( | ) | [virtual] |
| void pf_ValueList::Add | ( | const pf_Value & | a_val | ) |
Definition at line 289 of file pf.cpp.
References m_vec.
Referenced by ap_Argument::ArgParse(), GeneratePFStructure(), ap_Argument::Parse(), mif_CfgRep::ReplaceDate(), mif_CfgRep::ReplaceUser(), mif_CfgRep::ReplaceVersion(), and yyparse().
00289 { 00290 m_vec.push_back(a_val); 00291 }

| const pf_Value & pf_ValueList::At | ( | unsigned int | i | ) | const |
Definition at line 293 of file pf.cpp.
References m_vec.
Referenced by cfg_Base::Convert(), operator<<(), mif_CfgRep::ReplaceDate(), mif_CfgRep::ReplaceUser(), and mif_CfgRep::ReplaceVersion().
00293 { 00294 return m_vec.at(i); 00295 }

| unsigned int pf_ValueList::size | ( | ) | const |
Definition at line 297 of file pf.cpp.
References m_vec.
Referenced by cfg_Base::Convert(), operator<<(), mif_CfgRep::ReplaceDate(), mif_CfgRep::ReplaceUser(), and mif_CfgRep::ReplaceVersion().
00297 { 00298 return static_cast<unsigned int>(m_vec.size()); 00299 }

Definition at line 163 of file pf.h.
Referenced by Add(), At(), operator<<(), mif_CfgRep::ReplaceClients(), mif_CfgRep::ReplaceDate(), mif_CfgRep::ReplaceHosts(), mif_CfgRep::ReplaceUser(), mif_CfgRep::ReplaceVersion(), and size().
pf_ValueList::log_CLASSID_m [private] |
1.5.6