This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2018-03-05 20:37:40 +01:00

30 lines
363 B
C++

#ifndef CORE_H
#define CORE_H
#include <QObject>
#include "networkmanager.h"
class Core : public QObject
{
Q_OBJECT
public:
static Core* instance();
void destroy();
private:
explicit Core(QObject *parent = nullptr);
static Core *s_instance;
NetworkManager *m_networkManager = nullptr;
signals:
public slots:
};
#endif // CORE_H