This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-Qt/doric/registry.h

20 lines
280 B
C
Raw Normal View History

2019-12-13 17:45:27 +08:00
#ifndef REGISTRY_H
#define REGISTRY_H
#include <QMap>
class Registry {
private:
QMap<QString, QString> pluginInfoMap;
public:
2019-12-14 10:04:17 +08:00
Registry();
2019-12-13 17:45:27 +08:00
2019-12-14 18:28:04 +08:00
void registerNativePlugin(QString key, QString value);
QString acquirePluginInfo(QString key);
2019-12-13 17:45:27 +08:00
};
#endif // REGISTRY_H