Start Work on a GlobalState Class

This commit is contained in:
Justin Hammond 2020-05-24 23:19:25 +08:00
parent 2fdf9aa7be
commit da0c303920
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,6 @@
#include "ozwcore.h"
OZWCore::OZWCore(QObject *parent) : QObject(parent)
{
}

17
ozwadmin-main/ozwcore.h Normal file
View file

@ -0,0 +1,17 @@
#ifndef OZWCORE_H
#define OZWCORE_H
#include <QObject>
class OZWCore : public QObject
{
Q_OBJECT
public:
explicit OZWCore(QObject *parent = nullptr);
signals:
public slots:
};
#endif // OZWCORE_H