]> git.tdb.fi Git - libs/net.git/blob - source/version.h
Rename data to content in Message
[libs/net.git] / source / version.h
1 /* $Id$
2
3 This file is part of libmsphttp
4 Copyright © 2008  Mikkosoft Productions, Mikko Rasa
5 Distributed under the LGPL
6 */
7
8 #ifndef MSP_HTTP_MISC_H_
9 #define MSP_HTTP_MISC_H_
10
11 #include <string>
12
13 namespace Msp {
14 namespace Http {
15
16 typedef unsigned Version;
17
18 Version parse_version(const std::string &);
19 std::string version_str(Version);
20
21 } // namespace Http
22 } // namespace Msp
23
24 #endif