magpie/root.h
2023-11-22 20:13:33 -03:00

14 lines
229 B
C++

#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;
};