]> git.tdb.fi Git - libs/net.git/blob - source/http/submessage.h
Implement an asynchronous name resolver class
[libs/net.git] / source / http / submessage.h
1 #ifndef MSP_HTTP_SUBMESSAGE_H_
2 #define MSP_HTTP_SUBMESSAGE_H_
3
4 #include "message.h"
5
6 namespace Msp {
7 namespace Http {
8
9 class SubMessage: public Message
10 {
11 private:
12         SubMessage() { }
13
14 public:
15         virtual std::string str() const;
16
17         static SubMessage parse(const std::string &);
18 };
19
20 } // namespace Http
21 } // namespace Msp
22
23 #endif