Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 0 additions & 21 deletions BridgeLink/BridgeLink.h
Original file line number Diff line number Diff line change
Expand Up @@ -413,16 +413,6 @@ namespace Plugin {
}
return (result);
}
//! Versions: Returns a JSON Array of versions (JSONRPC interfaces) supported by this plugin.
string Versions() const override {
string result;
const PluginHost::IShell* source = Source();
if (source != nullptr) {
result = source->Versions();
source->Release();
}
return (result);
}
//! Callsign: Instantiation name of this specific plugin. It is the name given in the config for the classname.
string Callsign() const override {
string result;
Expand Down Expand Up @@ -598,16 +588,6 @@ namespace Plugin {
}
return (result);
}
//! Return whether the given version is supported by this IShell instance.
bool IsSupported(const uint8_t version) const override {
bool result = true;
const PluginHost::IShell* source = Source();
if (source != nullptr) {
result = source->IsSupported(version);
source->Release();
}
return (result);
}
// Get access to the SubSystems and their corrresponding information. Information can be set or get to see what the
// status of the sub systems is.
PluginHost::ISubSystem* SubSystems() override {
Expand Down Expand Up @@ -736,7 +716,6 @@ namespace Plugin {
// Do not forget to takeof "our" callsign
const size_t pos = method.find(PluginHost::ICompositPlugin::Delimiter);
ASSERT(pos != string::npos);
ASSERT(_callsign == method.substr(0, pos));
result = link->Invoke(channelid, id, token, method.substr(pos + 1), parameters, response);
link->Release();
}
Expand Down
Loading