#ifndef __HTTPPage_h__ #define __HTTPPage_h__ #include "HTTPParameters.h" namespace http { class HTTPPage { public: virtual int page(HTTPParameters &p); }; } #endif