// HTML_Object.h: interface for the HTML_Object class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_HTML_OBJECT_H__9704C923_7525_11D4_A35F_D87480A31908__INCLUDED_) #define AFX_HTML_OBJECT_H__9704C923_7525_11D4_A35F_D87480A31908__INCLUDED_ class HTML_Object; typedef list HTML_ObjectList; typedef HTML_ObjectList::iterator HTML_ObjectListIterator; class HTML_Object { public: virtual string& printString(); HTML_Object* print(); HTML_Object* convertToHTML(string& str); HTML_Object(); virtual ~HTML_Object(); protected: private: string buf; }; #endif // !defined(AFX_HTML_OBJECT_H__9704C923_7525_11D4_A35F_D87480A31908__INCLUDED_)