mirror of
https://github.com/Fishwaldo/ozw-admin.git
synced 2025-03-15 19:31:38 +00:00
Start Work on a GlobalState Class
This commit is contained in:
parent
2fdf9aa7be
commit
da0c303920
2 changed files with 23 additions and 0 deletions
6
ozwadmin-main/ozwcore.cpp
Normal file
6
ozwadmin-main/ozwcore.cpp
Normal file
|
@ -0,0 +1,6 @@
|
|||
#include "ozwcore.h"
|
||||
|
||||
OZWCore::OZWCore(QObject *parent) : QObject(parent)
|
||||
{
|
||||
|
||||
}
|
17
ozwadmin-main/ozwcore.h
Normal file
17
ozwadmin-main/ozwcore.h
Normal 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
|
Loading…
Add table
Reference in a new issue