20 lines
260 B
C++
20 lines
260 B
C++
#ifndef APP_H
|
|
#define APP_H
|
|
|
|
#include <QApplication>
|
|
|
|
class Window;
|
|
|
|
class App : public QApplication
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit App(int argc, char *argv[]);
|
|
protected:
|
|
bool event(QEvent* e);
|
|
private:
|
|
Window* const window;
|
|
|
|
};
|
|
|
|
#endif // APP_H
|