![]() |
Home | Libraries | License | Support | People | ALPS Web Site |
alps::XMLAttribute
// In header: <alps/parser/xmlattributes.h> class XMLAttribute { public: // types typedef std::string key_type; typedef std::string value_type; // construct/copy/destruct XMLAttribute(const XMLAttribute &); XMLAttribute(const key_type &); XMLAttribute(const key_type &, const value_type &); XMLAttribute(const key_type &, const char *); template<typename T> XMLAttribute(const key_type &, const T &); // public member functions key_type & key(); const key_type & key() const; value_type & value(); const value_type & value() const; };
XMLAttribute
public
construct/copy/destructXMLAttribute(const XMLAttribute & attr);
XMLAttribute(const key_type & k);
XMLAttribute(const key_type & k, const value_type & v);
XMLAttribute(const key_type & k, const char * v);
template<typename T> XMLAttribute(const key_type & k, const T & v);
Copyright © 1994, 2002-2005 Matthias Troyer, Synge Todo |