24 lines
632 B
C++
24 lines
632 B
C++
#include "DoricRegistry.h"
|
|
|
|
#include "plugin/DoricShaderPlugin.h"
|
|
#include "shader/DoricRootNode.h"
|
|
#include "shader/DoricStackNode.h"
|
|
#include "shader/DoricVLayoutNode.h"
|
|
|
|
DoricRegistry::DoricRegistry() {
|
|
registerNativePlugin<DoricShaderPlugin>("shader");
|
|
|
|
registerViewNode<DoricRootNode>("Root");
|
|
registerViewNode<DoricStackNode>("Stack");
|
|
registerViewNode<DoricVLayoutNode>("VLayout");
|
|
registerViewNode<DoricVLayoutNode>("HLayout");
|
|
}
|
|
|
|
bool DoricRegistry::acquirePluginInfo(QString name) {
|
|
return plugins.acquireClass(name);
|
|
}
|
|
|
|
bool DoricRegistry::acquireNodeInfo(QString name) {
|
|
return nodes.acquireClass(name);
|
|
}
|