sl@0: // Boost.Signals library sl@0: sl@0: // Copyright Douglas Gregor 2001-2003. Use, modification and sl@0: // distribution is subject to the Boost Software License, Version sl@0: // 1.0. (See accompanying file LICENSE_1_0.txt or copy at sl@0: // http://www.boost.org/LICENSE_1_0.txt) sl@0: sl@0: // For more information, see http://www.boost.org/libs/signals sl@0: sl@0: #ifndef BOOST_VISIT_EACH_HPP sl@0: #define BOOST_VISIT_EACH_HPP sl@0: sl@0: #include sl@0: sl@0: namespace boost { sl@0: template sl@0: inline void visit_each(Visitor& visitor, const T& t, long) sl@0: { sl@0: visitor(t); sl@0: } sl@0: sl@0: template sl@0: inline void visit_each(Visitor& visitor, const T& t) sl@0: { sl@0: visit_each(visitor, t, 0); sl@0: } sl@0: } sl@0: sl@0: #endif // BOOST_VISIT_EACH_HPP