QtNovelUI/WordsIDE/xapp.h

20 lines
423 B
C
Raw Normal View History

2023-03-17 13:58:38 +00:00
#ifndef XAPPLICATION_H
#define XAPPLICATION_H
#include <QApplication>
#include <commandsdispatcher.h>
2023-08-27 14:09:46 +00:00
#include <libConfig.h>
2023-03-17 13:58:38 +00:00
class XApp : public QApplication {
public:
XApp(int argc, char **argv);
virtual bool notify(QObject *receiver, QEvent *event);
public:
static Schedule::CommandsDispatcher *const disp_core;
2023-08-27 14:09:46 +00:00
static Config::Configration *const global_configration;
2023-03-17 13:58:38 +00:00
};
#endif // XAPPLICATION_H