Ticket #416: edmunds_karp_max_flow.hpp

File edmunds_karp_max_flow.hpp, 1.0 KB (added by Jürgen Hunold, 14 years ago)

edmonds_karp_deprecation_header

Line 
1//=======================================================================
2// (c) Copyright Juergen Hunold 2008
3// Use, modification and distribution is subject to the Boost Software
4// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5// http://www.boost.org/LICENSE_1_0.txt)
6//=======================================================================
7
8#ifndef BOOST_DEPRECATED_INCLUDE_EDMONDS_KARP_MAX_FLOW_HPP
9#define BOOST_DEPRECATED_INCLUDE_EDMONDS_KARP_MAX_FLOW_HPP
10
11#include <boost/version.hpp>
12
13#if BOOST_VERSION >= 103800
14#if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__DMC__)
15# pragma message ("Warning: This header is deprecated. Please use: boost/graph/edmonds_karp_max_flow.hpp")
16#elif defined(__GNUC__) || defined(__HP_aCC) || defined(__SUNPRO_CC) || defined(__IBMCPP__)
17# warning "This header is deprecated. Please use: boost/graph/edmonds_karp_max_flow.hpp"
18#endif
19#endif
20
21#include <boost/graph/edmonds_karp_max_flow.hpp>
22
23#endif // BOOST_DEPRECATED_INCLUDE_EDMONDS_KARP_MAX_FLOW_HPP