Skip to content

Instantly share code, notes, and snippets.

@alexesDev
Created August 14, 2012 16:46
Show Gist options
  • Save alexesDev/3350779 to your computer and use it in GitHub Desktop.
Save alexesDev/3350779 to your computer and use it in GitHub Desktop.
#include <QtGui/QApplication>
#include "MainWindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment