root/trunk/thune/debugger/main.cpp

Revision 20, 218 bytes (checked in by krobillard, 3 years ago)

Thune - Imported debugger.

Line 
1
2#include <QApplication>
3#include "ThuneDebugger.h"
4
5
6int main(int argc, char *argv[])
7{
8    Q_INIT_RESOURCE(icons);
9
10    QApplication app(argc, argv);
11
12    ThuneDebugger win;
13    win.show();
14
15    return app.exec();
16}
Note: See TracBrowser for help on using the browser.