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 (17 loc) · 829 Bytes
/
version.hpp
File metadata and controls
22 lines (17 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef BOOST_NETWORK_VERSION_HPP_20091214
#define BOOST_NETWORK_VERSION_HPP_20091214
// Copyright 2009, 2013 Dean Michael Berris <dberris@google.com>
// Copyright Glyn Matthews 2010.
// 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)
#include <boost/network/version.hpp>
#define BOOST_NETLIB_VERSION_MAJOR 0
#define BOOST_NETLIB_VERSION_MINOR 12
#define BOOST_NETLIB_VERSION_INCREMENT 0
#ifndef BOOST_NETLIB_VERSION
#define BOOST_NETLIB_VERSION \
BOOST_STRINGIZE(BOOST_NETLIB_VERSION_MAJOR) "." BOOST_STRINGIZE( \
BOOST_NETLIB_VERSION_MINOR) "." BOOST_STRINGIZE(BOOST_NETLIB_VERSION_INCREMENT)
#endif // BOOST_NETLIB_VERSION
#endif // BOOST_NETWORK_VERSION_HPP_20091214