X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fgui%2Fapp.h;h=090efdff9e7eeb40e26b7cdbf26aee83cd11521b;hb=56f80e7876367f9da3cff765b46e842270d45a0d;hp=2b57845e5b1687c065f9fdc29e84d1815f97e2eb;hpb=94e1e961b57f253b760298ab0bae96a7de6d20fa;p=virtualjaguar diff --git a/src/gui/app.h b/src/gui/app.h index 2b57845..090efdf 100644 --- a/src/gui/app.h +++ b/src/gui/app.h @@ -1,7 +1,7 @@ // // app.h: Header file // -// by James L. Hammons +// by James Hammons // (C) 2009 Underground Software // @@ -9,7 +9,7 @@ #define __APP_H__ //Hrm. uh??? I thought this wasn't the way to do this stuff...??? -#include +#include // Forward declarations class MainWin; @@ -17,14 +17,19 @@ class MainWin; class App: public QApplication { public: - App(int argc, char * argv[]); + App(int & argc, char * argv[]); private: MainWin * mainWindow; +// bool noUntunedTankPlease; // Globally accessible stuff goes here... // Although... Globally accessible stuff should go into settings.cpp... + // Unless it's stuff related to the GUI, then it should go here. :-P + // And we make these class variables so we don't have to muck around with + // chasing down instances of the object... // public: +// static QString filenameToRun; }; #endif // __APP_H__