Basic arithmetic and jump labels
This commit is contained in:
13
include/token/tokenizer.hpp
Normal file
13
include/token/tokenizer.hpp
Normal file
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
#include <string>
|
||||
#include <token/token.hpp>
|
||||
#include <vector>
|
||||
|
||||
namespace Token
|
||||
{
|
||||
class Tokenizer
|
||||
{
|
||||
public:
|
||||
void Tokenize(std::string const & line, int const lineNumber, std::vector<Token> & tokens);
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user