Empty lexer

This commit is contained in:
Rafał Grodziński
2025-05-27 13:23:04 +09:00
commit 45387b7638
6 changed files with 38 additions and 0 deletions

13
Lexer.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef LEXER_H
#define LEXER_H
#include <vector>
class Token;
class Lexer {
public:
std::vector<Token> tokens();
};
#endif