The first Git version

This commit is contained in:
2018-11-29 17:21:49 +07:00
commit b2faedd28f
13 changed files with 1821 additions and 0 deletions

15
Deaf2.0/Deaf2.0/Main.cpp Normal file
View File

@@ -0,0 +1,15 @@
#include "Processor.h"
#include <iostream>
int main(int argc, char** argv){
std::string filename = "";
if(argc >= 2)
filename = argv[1];
Processor p;
p.run(filename);
return 0;
}