History | View | Annotate | Download (228 Bytes)
#include <iostream>
#include <QApplication>
#include "mainwindow.h"
using namespace std;
int main( int argc, char** argv ) {
QApplication app(argc, argv);
MainWindow window;
window.show();
return app.exec();
}