summaryrefslogtreecommitdiff
path: root/src/http.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/http.hh')
-rw-r--r--src/http.hh19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/http.hh b/src/http.hh
new file mode 100644
index 0000000..58bfb92
--- /dev/null
+++ b/src/http.hh
@@ -0,0 +1,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 */