sl@0: #ifndef BOOST_BIND_ARG_HPP_INCLUDED sl@0: #define BOOST_BIND_ARG_HPP_INCLUDED sl@0: sl@0: // MS compatible compilers support #pragma once sl@0: sl@0: #if defined(_MSC_VER) && (_MSC_VER >= 1020) sl@0: # pragma once sl@0: #endif sl@0: sl@0: // sl@0: // bind/arg.hpp sl@0: // sl@0: // Copyright (c) 2002 Peter Dimov and Multi Media Ltd. sl@0: // sl@0: // Distributed under the Boost Software License, Version 1.0. (See sl@0: // accompanying file LICENSE_1_0.txt or copy at sl@0: // http://www.boost.org/LICENSE_1_0.txt) sl@0: // sl@0: // See http://www.boost.org/libs/bind/bind.html for documentation. sl@0: // sl@0: sl@0: namespace boost sl@0: { sl@0: sl@0: template class arg sl@0: { sl@0: }; sl@0: sl@0: template bool operator==(arg const &, arg const &) sl@0: { sl@0: return true; sl@0: } sl@0: sl@0: } // namespace boost sl@0: sl@0: #endif // #ifndef BOOST_BIND_ARG_HPP_INCLUDED