Algorithms Library Toolkit
A toolkit for algorithms, especially for algorithms on formal languages
TreeFromStringLexer.h
Go to the documentation of this file.
1
6#pragma once
7
8#include <ext/istream>
9
10#include <alib/string>
11
12#include <common/lexer.hpp>
13
14namespace tree {
15
16class TreeFromStringLexer : public ext::Lexer < TreeFromStringLexer > {
17public:
18 enum class TokenType {
28 };
29
30 static Token next ( ext::istream & input );
31};
32
33} /* namespace tree */
34
Definition: lexer.hpp:45
Definition: istream.h:32
Definition: TreeFromStringLexer.h:16
static Token next(ext::istream &input)
Definition: TreeFromStringLexer.cpp:10
TokenType
Definition: TreeFromStringLexer.h:18
Definition: BackwardOccurrenceTest.h:17