X-Git-Url: http://git.tdb.fi/?p=libs%2Fnet.git;a=blobdiff_plain;f=source%2Fhttp%2Fsubmessage.h;fp=source%2Fhttp%2Fsubmessage.h;h=f60276a9267c7c6997215e7a01db49e01cf5a137;hp=0000000000000000000000000000000000000000;hb=049fc42b671d623815408c3658a450b73063fec5;hpb=451c140747bef1829d55d20a33dd3543b9ab8c98 diff --git a/source/http/submessage.h b/source/http/submessage.h new file mode 100644 index 0000000..f60276a --- /dev/null +++ b/source/http/submessage.h @@ -0,0 +1,23 @@ +#ifndef MSP_HTTP_SUBMESSAGE_H_ +#define MSP_HTTP_SUBMESSAGE_H_ + +#include "message.h" + +namespace Msp { +namespace Http { + +class SubMessage: public Message +{ +private: + SubMessage() { } + +public: + virtual std::string str() const; + + static SubMessage parse(const std::string &); +}; + +} // namespace Http +} // namespace Msp + +#endif