@@ -0,0 +1,13 @@
#ifndef LEXER_H
#define LEXER_H
#include <vector>
class Token;
class Lexer {
public:
std::vector<Token> tokens();
};
#endif
The note is not visible to the blocked user.