AI 24/25 Project Software
Documentation for the AI 24/25 course programming project software
Loading...
Searching...
No Matches
lexical_analyzer.h
1#ifndef PARSER_LEXICAL_ANALYZER_H
2#define PARSER_LEXICAL_ANALYZER_H
3
4#include <string>
5
6namespace downward::cli::parser {
7class TokenStream;
8
9extern TokenStream split_tokens(const std::string& text);
10} // namespace downward::cli::parser
11#endif