summaryrefslogtreecommitdiff
path: root/src/http_protocol.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/http_protocol.hh')
-rw-r--r--src/http_protocol.hh13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/http_protocol.hh b/src/http_protocol.hh
new file mode 100644
index 0000000..f4a2b11
--- /dev/null
+++ b/src/http_protocol.hh
@@ -0,0 +1,13 @@
+// -*- mode: c++; c-basic-offset: 2; -*-
+
+#ifndef HTTP_PROTOCOL_HH
+#define HTTP_PROTOCOL_HH
+
+#include "protocol.hh"
+
+class HttpProtocol : public virtual Protocol {
+public:
+ static HttpProtocol* create();
+};
+
+#endif // HTTP_PROTOCOL_HH