Imported Upstream version 1.71.0
[platform/upstream/boost.git] / boost / gil / version.hpp
1 //
2 // Copyright (c) 2018 Christian Henning (chhenning at gmail dot com)
3 //
4 // Distributed under the Boost Software License, Version 1.0
5 // See accompanying file LICENSE_1_0.txt or copy at
6 // http://www.boost.org/LICENSE_1_0.txt
7 //
8 #ifndef BOOST_GIL_VERSION_HPP
9 #define BOOST_GIL_VERSION_HPP
10
11 /// @def BOOST_GIL_API_VERSION
12 /// Identifies the API version of gil.
13 /// This is a simple integer that is incremented by one every
14 /// time a set of code changes is merged to the develop branch.
15 #define BOOST_GIL_VERSION 22
16
17 // BOOST_GIL_LIB_VERSION must be defined to be the same as BOOST_GIL_VERSION
18 // but as a *string* in the form "x_y[_z]" where x is the major version
19 // number, y is the minor version number, and z is the patch level if not 0.
20 #define BOOST_GIL_LIB_VERSION "2_2"
21
22 #endif