8#include <RobotsIO/Utils/ProbeContainer.h>
10using namespace RobotsIO::Utils;
13ProbeContainer::~ProbeContainer()
17bool ProbeContainer::is_probe(
const std::string& name)
const
19 return (probes_.find(name) != probes_.end());
23Probe& ProbeContainer::get_probe(
const std::string& name)
const
25 return *(probes_.at(name));
28void ProbeContainer::set_probe(
const std::string& name, std::unique_ptr<Probe> probe)
30 probes_[name] = std::move(probe);