MCPcopy Create free account
hub / github.com/KDE/kdevelop / Dependency

Method Dependency

kdevplatform/shell/plugincontroller.cpp:126–135  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

124struct Dependency
125{
126 explicit Dependency(const QString &dependency)
127 {
128 const int pos = dependency.indexOf(QLatin1Char('@'));
129 if (pos != -1) {
130 interface = dependency.left(pos);
131 pluginName = dependency.mid(pos + 1);
132 } else {
133 interface = dependency;
134 }
135 }
136
137 QString interface;
138 QString pluginName;

Callers

nothing calls this directly

Calls 2

midMethod · 0.80
indexOfMethod · 0.45

Tested by

no test coverage detected