18 lines
309 B
C
18 lines
309 B
C
|
|
#ifndef USCTAPPLICATION_H
|
||
|
|
#define USCTAPPLICATION_H
|
||
|
|
|
||
|
|
#include <QApplication>
|
||
|
|
|
||
|
|
class UsctApplication : public QApplication
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
public:
|
||
|
|
UsctApplication(int& argc, char** argv);
|
||
|
|
~UsctApplication();
|
||
|
|
|
||
|
|
private:
|
||
|
|
bool notify(QObject* aReceiver, QEvent* aEvent);
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // USCTAPPLICATION_H
|