code_generator.hpp 323 B

123456789101112
  1. #ifndef CODE_GENERATOR
  2. #define CODE_GENERATOR
  3. #include "includes.hpp"
  4. #include "color.hpp"
  5. #include "functions.hpp"
  6. #include "pointer.hpp"
  7. string generate(vector<string> &tokens, int &i, map<string, string> &aliases, map<string, Pointer*> &pointers,
  8. int &line_num, int &current_cell, bool &error);
  9. #endif