#ifndef BOOST_ITERATOR_MANIFEST_HPP #define BOOST_ITERATOR_MANIFEST_HPP // MS compatible compilers support #pragma once #if defined(_MSC_VER) && (_MSC_VER >= 1020) # pragma once #endif /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8 // manifest.hpp: Verify that all dependent libraries are at the correct // versions // (C) Copyright 2010 Robert Ramey - http://www.rrsd.com . // Use, modification and distribution is subject to the Boost Software // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #include namespace boost { namespace iterator { class manifest { public: // specify the current version numbers for this library typedef boost::mpl::int_<2> interface_version; typedef boost::mpl::int_<3> implemenation_version; }; } // serialization } // boost #endif // BOOST_ITERATOR_MANIFEST_HPP