Data Structures | |
| class | StrX< To, From > |
| class | XMLDocument |
| class | XMLErrorHandler |
| class | XMLNodeReferenceList |
| class | XMLReference< T > |
Functions | |
| template<class To , class From > | |
| std::ostream & | operator<< (std::ostream &target, const StrX< To, From > &toDump) |
| template<class T , class U > | |
| XMLReference< T > | dynamic_pointer_cast (XMLReference< U > const &r) |
The XML C++ wrappers are offering a higher-level interface to the Xalan- and Xerces-XML API.
| XMLReference<T> dynamic_pointer_cast | ( | XMLReference< U > const & | r | ) | [inline] |
Definition at line 81 of file xmlReference.hpp.
References XMLReference< T >::get(), and XMLReference< T >::getDocument().
00082 { 00083 return XMLReference<T>( (T *)r.get(), r.getDocument() ); 00084 }