version.hpp 781 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * Copyright (c) 2017-2023 zhllxt
  3. *
  4. * author : zhllxt
  5. * email : 37792738@qq.com
  6. *
  7. * Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. * file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. */
  10. #ifndef __ASIO2_VERSION_HPP__
  11. #define __ASIO2_VERSION_HPP__
  12. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  13. #pragma once
  14. #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
  15. /** @def ASIO2_API_VERSION
  16. Identifies the API version of asio2.
  17. This is a simple integer that is incremented by one every
  18. time a set of code changes is merged to the develop branch.
  19. */
  20. // ASIO2_VERSION / 100 is the major version
  21. // ASIO2_VERSION % 100 is the minor version
  22. #define ASIO2_VERSION 209 // 2.9
  23. #endif // !__ASIO2_VERSION_HPP__