2002-05-21 23:39:58 +00:00
|
|
|
#ifndef BOOST_MEM_FN_HPP_INCLUDED
|
|
|
|
#define BOOST_MEM_FN_HPP_INCLUDED
|
|
|
|
|
2004-02-05 09:14:22 +00:00
|
|
|
// MS compatible compilers support #pragma once
|
|
|
|
|
|
|
|
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
|
|
|
|
# pragma once
|
2002-05-21 23:39:58 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//
|
|
|
|
// mem_fn.hpp - a generalization of std::mem_fun[_ref]
|
|
|
|
//
|
2009-08-17 18:33:49 +00:00
|
|
|
// Copyright (c) 2009 Peter Dimov
|
2002-05-21 23:39:58 +00:00
|
|
|
//
|
2009-08-17 18:33:49 +00:00
|
|
|
// Distributed under 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
|
2002-05-21 23:39:58 +00:00
|
|
|
//
|
|
|
|
// See http://www.boost.org/libs/bind/mem_fn.html for documentation.
|
|
|
|
//
|
|
|
|
|
2009-08-17 18:33:49 +00:00
|
|
|
#include <boost/bind/mem_fn.hpp>
|
2002-05-21 23:39:58 +00:00
|
|
|
|
|
|
|
#endif // #ifndef BOOST_MEM_FN_HPP_INCLUDED
|