X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fresponse.h;h=d721ad804a4d7ea7aab8ee8a89812d644e9001ba;hb=43b734260a10ccc5429d0ead16fac9ad0452a954;hp=20e144e8afa6d0936084f7b693c4dabde04289fb;hpb=070d56e7b0036ca2e4234eb06dcae83ebfb3df34;p=libs%2Fnet.git diff --git a/source/response.h b/source/response.h index 20e144e..d721ad8 100644 --- a/source/response.h +++ b/source/response.h @@ -1,10 +1,3 @@ -/* $Id$ - -This file is part of libmsphttp -Copyright © 2008 Mikkosoft Productions, Mikko Rasa -Distributed under the LGPL -*/ - #ifndef MSP_HTTP_RESPONSE_H_ #define MSP_HTTO_RESPONSE_H_ @@ -16,16 +9,16 @@ 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 &); -private: - Status status; - - Response() { } }; } // namespace Http