1 #ifndef CppTokenLexer_HPP
 2 #define CppTokenLexer_HPP
 3 
 4 // this file has been automatically generated from 'D:/work/soulng-project/sngcpp/lexer/CppTokenLexer.lexer' using soulng lexer generator slg version 3.0.0
 5 
 6 #include <sngcpp/lexer/CppLexerApi.hpp>
 7 #include <sngcpp/ast/SourceCodeWriter.hpp>
 8 #include <soulng/lexer/Lexer.hpp>
 9 
10 class CppTokenLexer public soulng::lexer::Lexer
11 {
12 public:
13     CppTokenLexer(const std::u32string& content_const std::string& fileName_int fileIndex_);
14     CppTokenLexer(const char32_t* start_const char32_t* end_const std::string& fileName_int fileIndex_);
15     int NextState(int statechar32_t c) override;
16     bool inBlockComment;
17     sngcpp::ast::SourceCodeWriter* writer;
18 private:
19     int GetTokenId(int statementIndex);
20 };
21 #endif