00001 #ifndef BOOST_BIND_ARG_HPP_INCLUDED
00002 #define BOOST_BIND_ARG_HPP_INCLUDED
00003
00004
00005
00006 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
00007 # pragma once
00008 #endif
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 namespace boost
00023 {
00024
00025 template<int I> class arg
00026 {
00027 };
00028
00029 template<int I> bool operator==(arg<I> const &, arg<I> const &)
00030 {
00031 return true;
00032 }
00033
00034 }
00035
00036 #endif // #ifndef BOOST_BIND_ARG_HPP_INCLUDED