Add missing methods stubs - just to write unit tests

This commit is contained in:
2020-04-08 16:29:03 +02:00
parent f7d36f3fff
commit e699a2c09a
+12
View File
@@ -105,4 +105,16 @@ void ProcessManager::stop_receiving()
#endif
recv_module_.stop_recv();
}
string ProcessManager::get_status()
{
// TODO: Implement status collection.
return "nothing to see here";
}
unordered_map<std::string, float> ProcessManager::get_statistics()
{
// TODO: Implement statistics.
return {};
}