]> git.tdb.fi Git - libs/net.git/blobdiff - source/response.h
Prepare for assimilation into mspnet
[libs/net.git] / source / response.h
diff --git a/source/response.h b/source/response.h
deleted file mode 100644 (file)
index d721ad8..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef MSP_HTTP_RESPONSE_H_
-#define MSP_HTTO_RESPONSE_H_
-
-#include "message.h"
-#include "status.h"
-
-namespace Msp {
-namespace Http {
-
-class Response: public Message
-{
-private:
-       Status status;
-
-       Response() { }
-public:
-       Response(Status);
-       Status get_status() const { return status; }
-       virtual std::string str() const;
-
-       static Response parse(const std::string &);
-};
-
-} // namespace Http
-} // namespace Msp
-
-#endif