/usr/include/boost/xpressive/detail/core
NameSizeModeActions
matcher/-0755rm
access.hpp35140644editdlrm
action.hpp10520644editdlrm
adaptor.hpp23700644editdlrm
finder.hpp62100644editdlrm
flow_control.hpp23640644editdlrm
icase.hpp13570644editdlrm
linker.hpp85670644editdlrm
list.hpp64330644editdlrm
matchers.hpp27720644editdlrm
optimize.hpp34660644editdlrm
peeker.hpp80020644editdlrm
quant_style.hpp44510644editdlrm
regex_domain.hpp8340644editdlrm
regex_impl.hpp55910644editdlrm
results_cache.hpp44800644editdlrm
state.hpp134630644editdlrm
sub_match_impl.hpp12950644editdlrm
sub_match_vector.hpp41960644editdlrm
Edit: /usr/include/boost/xpressive/detail/core/action.hpp (1052B)
/////////////////////////////////////////////////////////////////////////////// // action.hpp // // Copyright 2008 Eric Niebler. 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) #ifndef BOOST_XPRESSIVE_DETAIL_CORE_ACTION_HPP_EAN_10_04_2005 #define BOOST_XPRESSIVE_DETAIL_CORE_ACTION_HPP_EAN_10_04_2005 // MS compatible compilers support #pragma once #if defined(_MSC_VER) # pragma once #endif #include #include // for type_info_less namespace boost { namespace xpressive { namespace detail { /////////////////////////////////////////////////////////////////////////////// // actionable // struct actionable { virtual ~actionable() {} virtual void execute(action_args_type *) const {} actionable() : next(0) {} actionable const *next; }; }}} // namespace boost::xpressive::detail #endif