aboutsummaryrefslogtreecommitdiff
path: root/qtmips_cli/machineapp.cpp
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2017-11-19 21:16:46 +0100
committerKarel Kočí <cynerd@email.cz>2017-11-19 21:16:46 +0100
commit2c6562fa78e884d66b8c2a306f020101e8803f2e (patch)
tree7e9a940cb73fcdf3424ff5443163ba51da0ef82c /qtmips_cli/machineapp.cpp
parent04ea2670be26291a17808bd704ce3549795953a0 (diff)
downloadqtmips-2c6562fa78e884d66b8c2a306f020101e8803f2e.tar.gz
qtmips-2c6562fa78e884d66b8c2a306f020101e8803f2e.tar.bz2
qtmips-2c6562fa78e884d66b8c2a306f020101e8803f2e.zip
Just something I had stagged
Diffstat (limited to 'qtmips_cli/machineapp.cpp')
-rw-r--r--qtmips_cli/machineapp.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/qtmips_cli/machineapp.cpp b/qtmips_cli/machineapp.cpp
deleted file mode 100644
index 09fcd3e..0000000
--- a/qtmips_cli/machineapp.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
-#include "machineapp.h"
-#include <iostream>
-
-MachineApp::MachineApp(int argc, char **argv) : QCoreApplication(argc, argv) {
- connect(this, SIGNAL(aboutToQuit()), this, SLOT(quit()));
- // TODO drop hello
- std::cout << "Hello\n";
- std::cout.flush();
- // TODO check argc
- this->machine = new QtMipsMachine(argv[1]);
-}