Initial revision of the cdbdebugger playground.

This commit is contained in:
Banana Joe
2009-02-09 10:55:46 +01:00
parent 6672f89ff5
commit d0865ed2a2
13 changed files with 1299 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char* argv[])
{
QApplication app(argc, argv);
MainWindow mw;
if (argc >= 2) mw.setDebuggee(argv[1]);
mw.show();
return app.exec();
}