diff options
Diffstat (limited to 'src/ipa/raspberrypi/controller/algorithm.cpp')
-rw-r--r-- | src/ipa/raspberrypi/controller/algorithm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ipa/raspberrypi/controller/algorithm.cpp b/src/ipa/raspberrypi/controller/algorithm.cpp index 1b80e296..43ad0a2b 100644 --- a/src/ipa/raspberrypi/controller/algorithm.cpp +++ b/src/ipa/raspberrypi/controller/algorithm.cpp @@ -7,7 +7,7 @@ #include "algorithm.hpp" -using namespace RPi; +using namespace RPiController; void Algorithm::Read([[maybe_unused]] boost::property_tree::ptree const ¶ms) { @@ -32,7 +32,7 @@ void Algorithm::Process([[maybe_unused]] StatisticsPtr &stats, // For registering algorithms with the system: static std::map<std::string, AlgoCreateFunc> algorithms; -std::map<std::string, AlgoCreateFunc> const &RPi::GetAlgorithms() +std::map<std::string, AlgoCreateFunc> const &RPiController::GetAlgorithms() { return algorithms; } |