MCPcopy Create free account
hub / github.com/Tencent/UnLua / FindExportedClass

Function FindExportedClass

Plugins/UnLua/Source/UnLua/Private/Binding.cpp:79–88  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

77 }
78
79 IExportedClass* FindExportedClass(const FString Name)
80 {
81 auto Class = GetExported()->ReflectedClasses.FindRef(Name);
82 if (Class)
83 {
84 return Class;
85 }
86 Class = GetExported()->NonReflectedClasses.FindRef(Name);
87 return Class;
88 }
89
90 IExportedClass* FindExportedReflectedClass(FString Name)
91 {

Callers

nothing calls this directly

Calls 1

GetExportedFunction · 0.85

Tested by

no test coverage detected