00001 // 00002 // version.hpp 00003 // ~~~~~~~~~~~ 00004 // 00005 // Copyright (c) 2003-2008 Christopher M. Kohlhoff (chris at kohlhoff dot com) 00006 // 00007 // Distributed under the Boost Software License, Version 1.0. (See accompanying 00008 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 00009 // 00010 00011 #ifndef ASIO_VERSION_HPP 00012 #define ASIO_VERSION_HPP 00013 00014 #if defined(_MSC_VER) && (_MSC_VER >= 1200) 00015 # pragma once 00016 #endif // defined(_MSC_VER) && (_MSC_VER >= 1200) 00017 00018 // ASIO_VERSION % 100 is the sub-minor version 00019 // ASIO_VERSION / 100 % 1000 is the minor version 00020 // ASIO_VERSION / 100000 is the major version 00021 #define ASIO_VERSION 100200 // 1.2.0 00022 00023 #endif // ASIO_VERSION_HPP