]> git.tdb.fi Git - libs/net.git/blob - source/http/version.h
Add a dynamic receiver class for more flexible packet handling
[libs/net.git] / source / http / version.h
1 #ifndef MSP_HTTP_MISC_H_
2 #define MSP_HTTP_MISC_H_
3
4 #include <string>
5 #include <msp/net/mspnet_api.h>
6
7 namespace Msp {
8 namespace Http {
9
10 typedef unsigned Version;
11
12 MSPNET_API Version parse_version(const std::string &);
13 MSPNET_API std::string version_str(Version);
14
15 } // namespace Http
16 } // namespace Msp
17
18 #endif