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/registry.cpp
2019-12-14 10:04:17 +08:00

12 lines
199 B
C++

#include <QDebug>
#include "registry.h"
Registry::Registry() {
registerNativePlugin(typeid(ShaderPlugin).name());
}
void Registry::registerNativePlugin(QString name) {
qDebug() << name;
}