version.hpp 513 B

12345678910111213141516
  1. // Copyright Daniel Wallin 2009. Use, modification and distribution is
  2. // subject to the Boost Software License, Version 1.0. (See accompanying
  3. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. #ifndef LUABIND_VERSION_090216_HPP
  5. # define LUABIND_VERSION_090216_HPP
  6. # define LUABIND_VERSION 900
  7. // Each component uses two digits, so:
  8. //
  9. // major = LUABIND_VERSION / 10000
  10. // minor = LUABIND_VERSION / 100 % 100
  11. // patch = LUABIND_VERSION % 100
  12. #endif // LUABIND_VERSION_090216_HPP