move interesting projects to the root

This commit is contained in:
2023-01-07 20:06:39 +01:00
parent 25c65d210b
commit 535aa6b145
45 changed files with 1 additions and 0 deletions

23
VMTranslator/Parser.h Normal file
View File

@@ -0,0 +1,23 @@
#ifndef PARSER_H
#define PARSER_H
#include <exception>
#include <fstream>
#include <iostream>
#include <sstream>
#include <string>
#include "Commands.h"
class Parser {
private:
std::ifstream infile;
public:
Parser(std::string file);
void close();
bool more();
Command next();
};
#endif // PARSER_H