Public Member Functions | |
PANA_XMLData (std::string &name, PANA_Cfg &data) | |
int | svc (DOMNode *n) |
Protected Attributes | |
PANA_Cfg & | payload |
Definition at line 45 of file pana_config_manager.cxx.
|
constructor
Definition at line 53 of file pana_config_manager.cxx. References payload.
00053 : 00054 PANA_XMLElementParser(name), 00055 payload(data) { } |
|
parsing service
Definition at line 562 of file pana_config_manager.cxx. References payload.
00563 { 00564 std::string tagName; 00565 00566 tagName = "general"; 00567 PANA_XMLDataGeneral general(tagName, payload.general_); 00568 general.populate(n->getFirstChild()); 00569 00570 tagName = "client"; 00571 PANA_XMLDataClient client(tagName, payload.client_); 00572 client.populate(n->getFirstChild()); 00573 00574 tagName = "auth_agent"; 00575 PANA_XMLDataAuthAgent aa(tagName, payload.auth_agent_); 00576 aa.populate(n->getFirstChild()); 00577 00578 return (0); 00579 } |
|
payload Definition at line 66 of file pana_config_manager.cxx. Referenced by PANA_XMLData(), and svc(). |