// HTML_Page.h: interface for the HTML_Page class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_HTML_PAGE_H__85575523_774C_11D4_A35F_96E612641F08__INCLUDED_) #define AFX_HTML_PAGE_H__85575523_774C_11D4_A35F_96E612641F08__INCLUDED_ #if _MSC_VER >= 1000 #pragma once #endif // _MSC_VER >= 1000 #include "HTML_all2.h" extern "C" { #include "../cgihtml/cgi-lib.h" #include "../cgihtml/html-lib.h" } #include "HTML_Object.h" class HTML_Page : public HTML_Object { public: virtual HTML_Page* readQuery(llist& entries); string& printString(); HTML_Page* setDoc(HTML_Document* x); HTML_Document* getDoc(); HTML_Page(); virtual ~HTML_Page(); protected: HTML_Document* doc; private: }; #endif // !defined(AFX_HTML_PAGE_H__85575523_774C_11D4_A35F_96E612641F08__INCLUDED_)