version.hpp 679 B

12345678910111213141516
  1. /*=============================================================================
  2. Copyright (c) 2016 Paul Fultz II
  3. version.hpp
  4. Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. ==============================================================================*/
  7. #ifndef BOOST_HOF_GUARD_VERSION_HPP
  8. #define BOOST_HOF_GUARD_VERSION_HPP
  9. #define BOOST_HOF_VERSION_MAJOR 0
  10. #define BOOST_HOF_VERSION_MINOR 6
  11. #define BOOST_HOF_VERSION_PATCH 0
  12. #define BOOST_HOF_VERSION (((BOOST_HOF_VERSION_MAJOR) << 24) + ((BOOST_HOF_VERSION_MINOR) << 16) + (BOOST_HOF_VERSION_PATCH))
  13. #endif