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 
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