1 | // Don't forgot to specify the version in ../http.cpp
|
2 | |
3 | #include <string> |
4 | #include "../http.hpp" |
5 | #include "http_v1.1.hpp" |
6 | #include "../../protocol.hpp" |
7 | |
8 | namespace protocol { |
9 | |
10 | http1v1::http1v1(const http& h) : http(h) { |
11 | |
12 | }
|
13 | |
14 | }
|