// Copyright (c) 2001 Daniel C. Nuffer // Copyright (c) 2001-2011 Hartmut Kaiser // // 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) #if !defined(BOOST_SPIRIT_ITERATOR_MULTI_PASS_MAR_16_2007_1122AM) #define BOOST_SPIRIT_ITERATOR_MULTI_PASS_MAR_16_2007_1122AM #include #include #include #include #include #include /////////////////////////////////////////////////////////////////////////////// namespace boost { namespace spirit { namespace detail { /////////////////////////////////////////////////////////////////////////// // Default implementations of the different policies to be used with a // multi_pass iterator /////////////////////////////////////////////////////////////////////////// struct default_input_policy { default_input_policy() {} template default_input_policy(Functor const&) {} template static void destroy(MultiPass&) {} void swap(default_input_policy&) {} template static void advance_input(MultiPass& mp); template static typename MultiPass::reference get_input(MultiPass& mp); template static bool input_at_eof(MultiPass const& mp); template static bool input_is_valid(MultiPass& mp, TokenType& curtok); }; struct default_ownership_policy { template static void destroy(MultiPass&) {} void swap(default_ownership_policy&) {} template static void clone(MultiPass&) {} template static bool release(MultiPass& mp); template static bool is_unique(MultiPass const& mp); }; struct default_storage_policy { template static void destroy(MultiPass&) {} void swap(default_storage_policy&) {} template static typename MultiPass::reference dereference(MultiPass const& mp); template static void increment(MultiPass&) {} template static void clear_queue(MultiPass&) {} template static bool is_eof(MultiPass const& mp); template static bool equal_to(MultiPass const& mp, MultiPass const& x); template static bool less_than(MultiPass const& mp, MultiPass const& x); }; struct default_checking_policy { template static void destroy(MultiPass&) {} void swap(default_checking_policy&) {} template static void docheck(MultiPass const&) {} template static void clear_queue(MultiPass&) {} }; }}} #endif