#ifndef ___POST_h__ #define ___POST_h__ #include "Command.h" #include "Session.h" namespace http { class _POST : public core::Command { public: int processCommand(std::string request, core::Session &session) override { core::Header header(request); std::string data = "

This Is A Test

"; core::Response response(); session.out << response.getOutput(data); session.send(); } }; } #endif