Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:29:37

0001 //
0002 // Copyright (c) 2016-2019 Vinnie Falco (vinnie dot falco at gmail dot com)
0003 //
0004 // Distributed under the Boost Software License, Version 1.0. (See accompanying
0005 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0006 //
0007 // Official repository: https://github.com/boostorg/beast
0008 //
0009 
0010 #ifndef BOOST_BEAST_VERSION_HPP
0011 #define BOOST_BEAST_VERSION_HPP
0012 
0013 #include <boost/beast/core/detail/config.hpp>
0014 #include <boost/config.hpp>
0015 
0016 //[version
0017 
0018 /* Identifies the API version of Beast.
0019 
0020    This is a simple integer that is incremented by one every
0021    time a set of code changes is merged to the develop branch.
0022 */
0023 #define BOOST_BEAST_VERSION 351
0024 
0025 // A string describing BOOST_BEAST_VERSION, that can be used in http headers.
0026 #define BOOST_BEAST_VERSION_STRING "Boost.Beast/" BOOST_STRINGIZE(BOOST_BEAST_VERSION)
0027 
0028 //]
0029 
0030 #endif
0031