MCPcopy Create free account
hub / github.com/anjo76/angelscript / GetMetadataForType

Method GetMetadataForType

sdk/add_on/scriptbuilder/scriptbuilder.cpp:1081–1088  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1079}
1080
1081vector<string> CScriptBuilder::GetMetadataForType(int typeId)
1082{
1083 map<int,vector<string> >::iterator it = typeMetadataMap.find(typeId);
1084 if( it != typeMetadataMap.end() )
1085 return it->second;
1086
1087 return vector<string>();
1088}
1089
1090vector<string> CScriptBuilder::GetMetadataForFunc(asIScriptFunction *func)
1091{

Callers 1

TestFunction · 0.80

Calls 2

findMethod · 0.80
endMethod · 0.80

Tested by 1

TestFunction · 0.64