magpie/root.h

14 lines
229 B
C
Raw Normal View History

2023-11-22 23:13:33 +00:00
#pragma once
#include <iostream>
#include <QGuiApplication>
class Root : public QGuiApplication {
Q_OBJECT
public:
Root(int& argc, char* argv[]);
~Root();
bool notify(QObject* receiver, QEvent* e) override;
};