mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-01-13 17:42:09 +01:00
27 lines
274 B
C++
27 lines
274 B
C++
#ifndef APP_H
|
|
#define APP_H
|
|
|
|
#include <QApplication>
|
|
|
|
class GUI;
|
|
|
|
class App : QApplication
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
App(int &argc, char **argv);
|
|
~App();
|
|
void run();
|
|
|
|
protected:
|
|
bool event(QEvent *event);
|
|
|
|
private:
|
|
int &_argc;
|
|
char **_argv;
|
|
GUI *_gui;
|
|
};
|
|
|
|
#endif // APP_H
|