Constructs an empty comment.
| 1164 | public: |
| 1165 | /// Constructs an empty comment. |
| 1166 | TiXmlComment() : TiXmlNode( TiXmlNode::TINYXML_COMMENT ) {} |
| 1167 | /// Construct a comment from text. |
| 1168 | TiXmlComment( const char* _value ) : TiXmlNode( TiXmlNode::TINYXML_COMMENT ) { |
| 1169 | SetValue( _value ); |
nothing calls this directly
no outgoing calls
no test coverage detected