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-11-01 20:46:55 +01:00

23 lines
338 B
C++

#ifndef EXPERIENCEMANAGER_H
#define EXPERIENCEMANAGER_H
#include <QObject>
namespace nymeaserver {
class JsonRPCServer;
class ExperienceManager : public QObject
{
Q_OBJECT
public:
explicit ExperienceManager(JsonRPCServer *jsonRpcServer, QObject *parent = nullptr);
signals:
public slots:
};
}
#endif // EXPERIENCEMANAGER_H