2 // main.cpp: Architektonas implementation of the application
4 // Part of the Architektonas Project
5 // (C) 2011 Underground Software
6 // See the README and GPLv3 files for licensing and warranty information
8 // JLH = James Hammons <jlhamm@acm.org>
11 // --- ---------- -------------------------------------------------------------
12 // JLH 03/22/2011 Created this file
17 #include <QApplication>
18 #include "applicationwindow.h"
20 // Main app constructor--we stick globally accessible stuff here...
22 Architektonas::Architektonas(int & argc, char * argv[]): QApplication(argc, argv)//, charWnd(NULL)
24 mainWindow = new ApplicationWindow;
29 // Here's the main application loop--short and simple...
30 int main(int argc, char * argv[])
32 Q_INIT_RESOURCE(architektonas); // This must the same name as the exe filename
34 Architektonas app(argc, argv);