19 lines
381 B
C++
19 lines
381 B
C++
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
|
|
#include <QApplication>
|
|
|
|
class MyApplication : public QApplication
|
|
{
|
|
public:
|
|
MyApplication(int & argc, char** argv);
|
|
bool notify(QObject* receiver, QEvent* event);
|
|
bool winEventFilter(MSG* message, long* result);
|
|
static bool globalEventFilter(void* message);
|
|
};
|
|
|
|
int main(int argc, char* argv[]);
|
|
|
|
|
|
#endif // MAIN_H
|