Click here to Skip to main content
15,885,767 members
Articles / Programming Languages / C++

Wave: a Standard conformant C++ preprocessor library

Rate me:
Please Sign up or sign in to vote.
4.96/5 (58 votes)
10 Jan 200413 min read 395.7K   4.4K   81  
Describes a free and fully Standard conformant C++ preprocessor library
/*=============================================================================
    Wave: A Standard compliant C++ preprocessor

    Copyright (c) 2001-2004 Hartmut Kaiser
    http://spirit.sourceforge.net/

    Use, modification and 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)

    See Copyright.txt for full acknowledgements.
=============================================================================*/

#if !defined(CPP_DEFINED_GRAMMAR_GEN_HPP_825BE9F5_98A3_400D_A97C_AD76B3B08632_INCLUDED)
#define CPP_DEFINED_GRAMMAR_GEN_HPP_825BE9F5_98A3_400D_A97C_AD76B3B08632_INCLUDED

#include <list>
#include <boost/spirit/core/parser.hpp>
#include <boost/pool/pool_alloc.hpp>

#include "wave/lex_iterator.hpp"
#include "wave/util/unput_queue_iterator.hpp"

///////////////////////////////////////////////////////////////////////////////
namespace wave { 
namespace grammars {

template <typename TokenT>
struct defined_grammar_gen
{
    typedef std::list<TokenT, boost::fast_pool_allocator<TokenT> >
        token_sequence_t;

//  The parse_operator_define function is instantiated manually twice to 
//  simplify the explicit specialization of this template. This way the user 
//  has only to specify one template parameter (the token type) to correctly
//  formulate the required explicit specialization.
//  This results in no code overhead, because otherwise the function would be
//  generated by the compiler twice anyway.

    typedef wave::util::unput_queue_iterator<
            typename token_sequence_t::iterator, TokenT, token_sequence_t>
        iterator1_t;

    typedef wave::util::unput_queue_iterator<
            WAVE_LEXER_NS::lex_iterator<TokenT>, TokenT, token_sequence_t>
        iterator2_t;
        
//  parse the operator defined and return the found qualified name
    static boost::spirit::parse_info<iterator1_t> 
    parse_operator_defined (iterator1_t const &first, iterator1_t const &last,
        token_sequence_t &found_qualified_name);

    static boost::spirit::parse_info<iterator2_t> 
    parse_operator_defined (iterator2_t const &first, iterator2_t const &last,
        token_sequence_t &found_qualified_name);
};

///////////////////////////////////////////////////////////////////////////////
}   // namespace grammars
}   // namespace wave

#endif // !defined(CPP_DEFINED_GRAMMAR_GEN_HPP_825BE9F5_98A3_400D_A97C_AD76B3B08632_INCLUDED)

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United States United States
Actively involved in Boost and the development of the Spirit parser construction framework.

Comments and Discussions