OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TiXmlComment
(Results
1 - 2
of
2
) sorted by null
/external/tinyxml/
tinyxml.cpp
1277
TiXmlComment
::
TiXmlComment
( const
TiXmlComment
& copy ) : TiXmlNode( TiXmlNode::COMMENT )
1283
void
TiXmlComment
::operator=( const
TiXmlComment
& base )
1290
void
TiXmlComment
::Print( FILE* cfile, int depth ) const
1299
void
TiXmlComment
::StreamOut( TIXML_OSTREAM * stream ) const
1308
void
TiXmlComment
::CopyTo(
TiXmlComment
* target ) const
1314
TiXmlNode*
TiXmlComment
::Clone() cons
[
all
...]
tinyxml.h
87
class
TiXmlComment
;
638
const
TiXmlComment
* ToComment() const { return ( this && type == COMMENT ) ? (const
TiXmlComment
*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
645
TiXmlComment
* ToComment() { return ( this && type == COMMENT ) ? (
TiXmlComment
*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
[
all
...]
Completed in 231 milliseconds