Tokenizer.h 311 B

123456789101112131415
  1. #ifndef TOKENIZER_H
  2. #define TOKENIZER_H
  3. #include <iostream>
  4. #include <vector>
  5. #include "tokenizer/TokenStream.h"
  6. namespace Tokenizer {
  7. typedef std::basic_istream<char32_t> i32stream;
  8. typedef std::basic_ifstream<char32_t> if32stream;
  9. bool tokenize(TokenStream& tokens, i32stream& input);
  10. }
  11. #endif