MCPcopy Create free account
hub / github.com/SpartanJ/eepp / getDefinitionIndex

Method getDefinitionIndex

src/tools/ecode/plugins/pluginmanager.cpp:136–145  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

134}
135
136const PluginDefinition* PluginManager::getDefinitionIndex( const Int64& index ) const {
137 const PluginDefinition* def = nullptr;
138 Int64 i = 0;
139 for ( const auto& curDef : mDefinitions ) {
140 if ( index == i )
141 def = &curDef.second;
142 ++i;
143 }
144 return def;
145}
146
147UICodeEditorSplitter* PluginManager::getSplitter() const {
148 return mSplitter;

Callers 2

dataMethod · 0.80
NewMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected