Derived App from QApplication

This commit is contained in:
Matt Keeter 2014-03-14 10:26:27 -04:00
parent 1eaae882a0
commit a9ea3928e4
4 changed files with 35 additions and 8 deletions

8
src/app.cpp Normal file
View file

@ -0,0 +1,8 @@
#include "app.h"
#include "window.h"
App::App(int argc, char *argv[]) :
QApplication(argc, argv), window(new Window())
{
window->show();
}