1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#ifndef HTTP_HH #define HTTP_HH #include <string> namespace stuff { class Http { public: static void response(unsigned int status, const std::string& content); private: Http() = delete; ~Http() = delete; }; } // namespace stuff #endif /* HTTP_HH */