Tokenizer.h 209 B

1234567891011121314
  1. #ifndef TOKENIZER_H
  2. #define TOKENIZER_H
  3. #include <iostream>
  4. #include <vector>
  5. #include "tokenizer/Token.h"
  6. namespace Tokenizer
  7. {
  8. void tokenize(std::vector<Token>& tokens, std::istream& input);
  9. }
  10. #endif