File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55#pragma once
66
77#include < Corrade/PluginManager/AbstractPlugin.h>
8+ #include < Corrade/Containers/Array.h>
9+ #include < Corrade/Containers/String.h>
810#include < exception>
911#include < nlohmann/json.hpp>
1012#include < string>
@@ -69,9 +71,9 @@ class AbstractPlugin : public Corrade::PluginManager::AbstractPlugin
6971 }
7072
7173public:
72- static std::vector<std::string > pluginSearchPaths ()
74+ static Corrade::Containers::Array<Corrade::Containers::String > pluginSearchPaths ()
7375 {
74- return {" " };
76+ return {};
7577 }
7678
7779 explicit AbstractPlugin (Corrade::PluginManager::AbstractManager &manager, const std::string &plugin)
Original file line number Diff line number Diff line change @@ -26,9 +26,9 @@ class HandlerModulePlugin : public AbstractPlugin
2626 return " visor.module.handler/1.0" ;
2727 }
2828
29- static std::vector<std::string > pluginSearchPaths ()
29+ static Corrade::Containers::Array<Corrade::Containers::String > pluginSearchPaths ()
3030 {
31- return {" " };
31+ return {};
3232 }
3333
3434 explicit HandlerModulePlugin (Corrade::PluginManager::AbstractManager &manager, const std::string &plugin)
Original file line number Diff line number Diff line change @@ -23,9 +23,9 @@ class InputModulePlugin : public AbstractPlugin
2323 return " visor.module.input/1.0" ;
2424 }
2525
26- static std::vector<std::string > pluginSearchPaths ()
26+ static Corrade::Containers::Array<Corrade::Containers::String > pluginSearchPaths ()
2727 {
28- return {" " };
28+ return {};
2929 }
3030
3131 explicit InputModulePlugin (Corrade::PluginManager::AbstractManager &manager, const std::string &plugin)
You can’t perform that action at this time.
0 commit comments