Update of /cvsroot/boost/boost/boost/wave/cpplexer/re2clex
In directory 
sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv30735/boost/wave/cpplexer/re2clex

Modified Files:
        cpp_re2c_lexer.hpp 
Log Message:
Factored out the pure lex_input_interface to simplify writing different lexer 
types for Wave.

Index: cpp_re2c_lexer.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/wave/cpplexer/re2clex/cpp_re2c_lexer.hpp,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -r1.35 -r1.36
--- cpp_re2c_lexer.hpp  9 Nov 2006 14:34:48 -0000       1.35
+++ cpp_re2c_lexer.hpp  22 Nov 2006 02:33:44 -0000      1.36
@@ -40,6 +40,8 @@
 #include <boost/wave/cpplexer/detect_include_guards.hpp>
 #endif
 
+#include <boost/wave/cpplexer/cpp_lex_interface_generator.hpp>
+
 // this must occur after all of the includes and before any code appears
 #ifdef BOOST_HAS_ABI_HEADERS
 #include BOOST_ABI_PREFIX
@@ -316,7 +318,9 @@
      
 template <typename IteratorT, typename PositionT = 
boost::wave::util::file_position_type>
 class lex_functor 
-:   public lex_input_interface<typename lexer<IteratorT, 
PositionT>::token_type>
+:   public lex_input_interface_generator<
+        typename lexer<IteratorT, PositionT>::token_type
+    >
 {    
 public:
 


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to