18 lines
340 B
C++
18 lines
340 B
C++
#ifndef XAPPLICATION_H
|
|
#define XAPPLICATION_H
|
|
|
|
#include <QApplication>
|
|
#include <commandsdispatcher.h>
|
|
|
|
class XApp : public QApplication {
|
|
public:
|
|
XApp(int argc, char **argv);
|
|
|
|
virtual bool notify(QObject *receiver, QEvent *event);
|
|
|
|
public:
|
|
static Schedule::CommandsDispatcher *const disp_core;
|
|
};
|
|
|
|
#endif // XAPPLICATION_H
|