#ifndef __HTTPEntryPoints_h__ #define __HTTPEntryPoints_h__ #include "Command.h" #include "TCPSession.h" #include "Log.h" #include "IMFMessage.h" #include "HTTPRequest.h" namespace http { class HTTPEntryPoints { public: HTTPEntryPoints(); coreutils::ZString getFlow(coreutils::ZString &uri); private: coreutils::ZString index; coreutils::ZString notfound; }; } #endif