The first Git version
This commit is contained in:
15
Deaf2.0/Deaf2.0/Main.cpp
Normal file
15
Deaf2.0/Deaf2.0/Main.cpp
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user