Changeset 17417 in vbox for trunk/include/VBox
- Timestamp:
- Mar 5, 2009 4:39:39 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/xml.h
r17362 r17417 168 168 }; 169 169 170 class VBOXXML_CLASS ENodeIsNotElement : public LogicError 171 { 172 public: 173 ENodeIsNotElement(const char *aMsg = NULL) : LogicError(aMsg) {} 174 ENodeIsNotElement(RT_SRC_POS_DECL) : LogicError(RT_SRC_POS_ARGS) {} 175 }; 176 170 177 // Runtime errors 171 178 ////////////////////////////////////////////////////////////////////////////// … … 420 427 }; 421 428 422 /* 429 /** 423 430 * Node: 424 * an XML node, which represents either an element or an attribute. 431 * an XML node, which represents either an element or text content 432 * or an attribute. 425 433 * 426 434 * For elements, getName() returns the element name, and getValue() … … 435 443 * -- xml::Document::createRootElement() 436 444 * -- xml::Node::createChild() 445 * -- xml::Node::addContent() 437 446 * -- xml::Node::setAttribute() 438 447 */ … … 467 476 468 477 Node* createChild(const char *pcszElementName); 478 Node* addContent(const char *pcszContent); 469 479 Node* setAttribute(const char *pcszName, const char *pcszValue); 470 480
Note:
See TracChangeset
for help on using the changeset viewer.