Comment_Node(3) Comment_Node(3) NAME Comment_Node - Node in an HTML tree for comments SYNOPSIS namespace HTML_Tree { class Comment_Node : public Text_Node { public: Comment_Node( char const *comment, Content_Node *parent = 0 ); Comment_Node( char const *begin, char const *end, Content_Node *parent = 0 ); }; } DESCRIPTION Comment_Node is-a Text_Node that contains the text of com­ ments (including the <-- and --> delimiters). Public Interface Constructors Construct a Comment_Node. The arguments are the same as for Text_Node. SEE ALSO Content_Node(3), Text_Node(3). AUTHOR Paul J. Lucas HTML Tree March 17, 2003 Comment_Node(3)