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.
powersync-core/libnymea-core/devices/deviceclasscache.h

17 lines
334 B
C++

#ifndef PLUGININFOCACHE_H
#define PLUGININFOCACHE_H
#include "types/deviceclass.h"
#include "devices/deviceplugin.h"
class PluginInfoCache
{
public:
PluginInfoCache();
static void cachePluginInfo(const QJsonObject &metaData);
static QJsonObject loadPluginInfo(const PluginId &pluginId);
};
#endif // PLUGININFOCACHE_H