Chris@16: // Chris@16: // version.hpp Chris@16: // ~~~~~~~~~~~ Chris@16: // Chris@101: // Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com) Chris@16: // Chris@16: // Distributed under the Boost Software License, Version 1.0. (See accompanying Chris@16: // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) Chris@16: // Chris@16: Chris@16: #ifndef BOOST_ASIO_VERSION_HPP Chris@16: #define BOOST_ASIO_VERSION_HPP Chris@16: Chris@16: #if defined(_MSC_VER) && (_MSC_VER >= 1200) Chris@16: # pragma once Chris@16: #endif // defined(_MSC_VER) && (_MSC_VER >= 1200) Chris@16: Chris@16: // BOOST_ASIO_VERSION % 100 is the sub-minor version Chris@16: // BOOST_ASIO_VERSION / 100 % 1000 is the minor version Chris@16: // BOOST_ASIO_VERSION / 100000 is the major version Chris@101: #define BOOST_ASIO_VERSION 101006 // 1.10.6 Chris@16: Chris@16: #endif // BOOST_ASIO_VERSION_HPP