2002-05-17 15:28:22 +00:00
|
|
|
// Boost.Signals library
|
2003-10-01 04:34:38 +00:00
|
|
|
|
2004-07-25 02:29:29 +00:00
|
|
|
// Copyright Douglas Gregor 2001-2003. Use, modification and
|
2003-10-01 04:34:38 +00:00
|
|
|
// 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)
|
|
|
|
|
2002-12-27 16:51:53 +00:00
|
|
|
// For more information, see http://www.boost.org/libs/signals
|
2002-05-17 15:28:22 +00:00
|
|
|
|
|
|
|
#ifndef BOOST_VISIT_EACH_HPP
|
|
|
|
#define BOOST_VISIT_EACH_HPP
|
|
|
|
|
|
|
|
namespace boost {
|
|
|
|
template<typename Visitor, typename T>
|
|
|
|
inline void visit_each(Visitor& visitor, const T& t, long)
|
|
|
|
{
|
|
|
|
visitor(t);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Visitor, typename T>
|
|
|
|
inline void visit_each(Visitor& visitor, const T& t)
|
|
|
|
{
|
|
|
|
visit_each(visitor, t, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // BOOST_VISIT_EACH_HPP
|