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.
2019-05-02 12:14:16 +02:00

31 lines
527 B
C++

#ifndef PLATFORM_H
#define PLATFORM_H
#include <QObject>
class PlatformPlugin;
class PlatformSystemController;
class PlatformUpdateController;
namespace nymeaserver {
class Platform : public QObject
{
Q_OBJECT
public:
explicit Platform(QObject *parent = nullptr);
PlatformSystemController *systemController() const;
PlatformUpdateController *updateController() const;
private:
QStringList pluginSearchDirs() const;
private:
PlatformPlugin *m_platformPlugin = nullptr;
};
}
#endif // PLATFORM_H