Chris@16: /* Chris@101: * Copyright Andrey Semashev 2007 - 2015. Chris@16: * Distributed under the Boost Software License, Version 1.0. Chris@16: * (See accompanying file LICENSE_1_0.txt or copy at Chris@16: * http://www.boost.org/LICENSE_1_0.txt) Chris@16: */ Chris@16: /*! Chris@16: * \file keyword_fwd.hpp Chris@16: * \author Andrey Semashev Chris@16: * \date 29.01.2012 Chris@16: * Chris@16: * The header contains attribute keyword forward declaration. Chris@16: */ Chris@16: Chris@16: #ifndef BOOST_LOG_EXPRESSIONS_KEYWORD_FWD_HPP_INCLUDED_ Chris@16: #define BOOST_LOG_EXPRESSIONS_KEYWORD_FWD_HPP_INCLUDED_ Chris@16: Chris@16: #include Chris@16: Chris@16: #ifdef BOOST_HAS_PRAGMA_ONCE Chris@16: #pragma once Chris@16: #endif Chris@16: Chris@16: namespace boost { Chris@16: Chris@16: #ifndef BOOST_LOG_DOXYGEN_PASS Chris@16: Chris@16: namespace phoenix { Chris@16: Chris@16: template< typename > Chris@16: struct actor; Chris@16: Chris@16: } // namespace phoenix Chris@16: Chris@16: #endif // BOOST_LOG_DOXYGEN_PASS Chris@16: Chris@16: BOOST_LOG_OPEN_NAMESPACE Chris@16: Chris@16: namespace expressions { Chris@16: Chris@16: /*! Chris@16: * \brief This class implements an expression template keyword Chris@16: */ Chris@16: template< typename DescriptorT, template< typename > class ActorT = phoenix::actor > Chris@16: struct attribute_keyword; Chris@16: Chris@16: } // namespace expressions Chris@16: Chris@16: BOOST_LOG_CLOSE_NAMESPACE // namespace log Chris@16: Chris@16: } // namespace boost Chris@16: Chris@16: #endif // BOOST_LOG_EXPRESSIONS_KEYWORD_FWD_HPP_INCLUDED_