#include <pugixml.hpp>
Public Member Functions | |
xpath_variable * | add (const char_t *name, xpath_value_type type) |
xpath_variable * | get (const char_t *name) |
const xpath_variable * | get (const char_t *name) const |
xpath_variable_set & | operator= (const xpath_variable_set &rhs) |
bool | set (const char_t *name, bool value) |
bool | set (const char_t *name, double value) |
bool | set (const char_t *name, const char_t *value) |
bool | set (const char_t *name, const xpath_node_set &value) |
xpath_variable_set () | |
xpath_variable_set (const xpath_variable_set &rhs) | |
~xpath_variable_set () | |
Private Member Functions | |
void | _assign (const xpath_variable_set &rhs) |
xpath_variable * | _find (const char_t *name) const |
void | _swap (xpath_variable_set &rhs) |
Static Private Member Functions | |
static bool | _clone (xpath_variable *var, xpath_variable **out_result) |
static void | _destroy (xpath_variable *var) |
Private Attributes | |
xpath_variable * | _data [64] |
Definition at line 1140 of file pugixml.hpp.
PUGI__FN pugi::xpath_variable_set::xpath_variable_set | ( | ) |
Definition at line 12274 of file pugixml.cpp.
Referenced by operator=().
PUGI__FN pugi::xpath_variable_set::~xpath_variable_set | ( | ) |
Definition at line 12280 of file pugixml.cpp.
PUGI__FN pugi::xpath_variable_set::xpath_variable_set | ( | const xpath_variable_set & | rhs | ) |
Definition at line 12286 of file pugixml.cpp.
|
private |
Definition at line 12327 of file pugixml.cpp.
References _data.
|
staticprivate |
Definition at line 12362 of file pugixml.cpp.
References pugi::xpath_variable::_next, pugi::xpath_variable::_type, copy_xpath_variable(), pugi::xpath_variable::name(), and new_xpath_variable().
|
staticprivate |
Definition at line 12389 of file pugixml.cpp.
References pugi::xpath_variable::_next, pugi::xpath_variable::_type, and delete_xpath_variable().
|
private |
Definition at line 12349 of file pugixml.cpp.
References pugi::xpath_variable::_next, hash_string(), pugi::xpath_variable::name(), and strequal().
|
private |
Definition at line 12338 of file pugixml.cpp.
References _data.
PUGI__FN xpath_variable * pugi::xpath_variable_set::add | ( | const char_t * | name, |
xpath_value_type | type | ||
) |
Definition at line 12401 of file pugixml.cpp.
References pugi::xpath_variable::_next, hash_string(), pugi::xpath_variable::name(), new_xpath_variable(), and strequal().
PUGI__FN xpath_variable * pugi::xpath_variable_set::get | ( | const char_t * | name | ) |
Definition at line 12448 of file pugixml.cpp.
PUGI__FN const xpath_variable * pugi::xpath_variable_set::get | ( | const char_t * | name | ) | const |
Definition at line 12453 of file pugixml.cpp.
PUGI__FN xpath_variable_set & pugi::xpath_variable_set::operator= | ( | const xpath_variable_set & | rhs | ) |
Definition at line 12294 of file pugixml.cpp.
References PUGI__FN, PUGIXML_NOEXCEPT, and xpath_variable_set().
Definition at line 12424 of file pugixml.cpp.
References pugi::xpath_variable::set(), and pugi::xpath_type_boolean.
Definition at line 12430 of file pugixml.cpp.
References pugi::xpath_variable::set(), and pugi::xpath_type_number.
Definition at line 12436 of file pugixml.cpp.
References pugi::xpath_variable::set(), and pugi::xpath_type_string.
PUGI__FN bool pugi::xpath_variable_set::set | ( | const char_t * | name, |
const xpath_node_set & | value | ||
) |
Definition at line 12442 of file pugixml.cpp.
References pugi::xpath_variable::set(), and pugi::xpath_type_node_set.
|
private |
Definition at line 1143 of file pugixml.hpp.