forked from glynos/cpp-netlib
-
Notifications
You must be signed in to change notification settings - Fork 424
Expand file tree
/
Copy pathversion.hpp
More file actions
22 lines (18 loc) · 794 Bytes
/
version.hpp
File metadata and controls
22 lines (18 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright Dean Michael Berris 2009.
// Copyright Glyn Matthews 2010, 2013.
// Copyright 2012 Google, Inc.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#ifndef NETWORK_VERSION_HPP_20091214
#define NETWORK_VERSION_HPP_20091214
#include <boost/config.hpp>
#define NETLIB_VERSION_MAJOR 1
#define NETLIB_VERSION_MINOR 0
#define NETLIB_VERSION_INCREMENT 0a
#ifndef NETLIB_VERSION
#define NETLIB_VERSION \
BOOST_STRINGIZE(NETLIB_VERSION_MAJOR) "." BOOST_STRINGIZE( \
NETLIB_VERSION_MINOR) "." BOOST_STRINGIZE(NETLIB_VERSION_INCREMENT)
#endif // NETLIB_VERSION
#endif // NETWORK_VERSION_HPP_20091214