Click here to Skip to main content
15,892,298 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 400.1K   4.4K   81  
Describes a free and fully Standard conformant C++ preprocessor library
/*=============================================================================
    Wave: A Standard compliant C++ preprocessor

    Re2C based C++ lexer
    
    Copyright (c) 2001-2003 Hartmut Kaiser
    http://spirit.sourceforge.net/

    Permission to copy, use, modify, sell and distribute this software
    is granted provided this copyright notice appears in all copies.
    This software is provided "as is" without express or implied
    warranty, and with no claim as to its suitability for any purpose.

    See Copyright.txt for full copyright notices and acknowledgements.
=============================================================================*/

#if !defined(RE2C_FUNCTOR_HPP_80E4E0B2_7C71_44FE_9F65_901BBCD5B840_INCLUDED)
#define RE2C_FUNCTOR_HPP_80E4E0B2_7C71_44FE_9F65_901BBCD5B840_INCLUDED

#include "wave/cpplexer/re2clex/cpp_re2c_lexer.hpp"

///////////////////////////////////////////////////////////////////////////////
namespace wave {
namespace cpplexer {

///////////////////////////////////////////////////////////////////////////////
//
//  re2c_functor class
//
//      The re2c_functor template class is provided for simplicity reasons. It 
//      imports the unified re2clex::lex_functor lexer interface template under 
//      a new name into the cpplexer namespace. 
//
//      As an alternative the lex_functor is to be explicitely decorated with
//      it's namespace (or imported by an using directive). This way it is 
//      possible by simply switching the used namespace to get different lexer 
//      implementations.
//
///////////////////////////////////////////////////////////////////////////////

template <typename IteratorT>
struct re2c_functor 
:   public re2clex::lex_functor<IteratorT>
{
};

///////////////////////////////////////////////////////////////////////////////
}   // namespace cpplexer
}   // namespace wave

#endif // !defined(RE2C_FUNCTOR_HPP_80E4E0B2_7C71_44FE_9F65_901BBCD5B840_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