libwolfram20

◆ parse()

void WAPodState::parse ( rapidxml::xml_node<> *  states)
private

Parsing a input 'state' xml node.

Precondition
It must be called only once (by the constructor)
Parameters
[in]statesXML Node of state
45 {
46 // Reading attribute
47 this->_name = std::string( states->first_attribute("name")->value() );
48 this->_input = std::string( states->first_attribute("input")->value() );
49}
std::string _input
It can be used to modify subsequent queries.
Definition: WAPodState.h:31
std::string _name
Describes the pod state.
Definition: WAPodState.h:30