Skip to content
Snippets Groups Projects

Resolve "Refactoring WOLF installation system"

Merged Mederic Fourmy requested to merge 451-refactoring-wolf-installation-system into devel
3 files
+ 77
27
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -157,16 +157,16 @@ class FrameBase : public NodeBase, public HasStateBlocks, public std::enable_sha
@@ -157,16 +157,16 @@ class FrameBase : public NodeBase, public HasStateBlocks, public std::enable_sha
CaptureBaseConstPtr getCaptureOf(const SensorBaseConstPtr _sensor_ptr) const;
CaptureBaseConstPtr getCaptureOf(const SensorBaseConstPtr _sensor_ptr) const;
CaptureBasePtr getCaptureOf(const SensorBaseConstPtr _sensor_ptr);
CaptureBasePtr getCaptureOf(const SensorBaseConstPtr _sensor_ptr);
CaptureBaseConstPtr getCaptureOf(const SensorBasePtr _sensor_ptr, const std::string& type) const;
CaptureBaseConstPtr getCaptureOf(const SensorBaseConstPtr _sensor_ptr, const std::string& type) const;
CaptureBasePtr getCaptureOf(const SensorBasePtr _sensor_ptr, const std::string& type);
CaptureBasePtr getCaptureOf(const SensorBasePtr _sensor_ptr, const std::string& type);
CaptureBaseConstPtrList getCapturesOf(const SensorBasePtr _sensor_ptr) const;
CaptureBaseConstPtrList getCapturesOf(const SensorBaseConstPtr _sensor_ptr) const;
CaptureBasePtrList getCapturesOf(const SensorBasePtr _sensor_ptr);
CaptureBasePtrList getCapturesOf(const SensorBasePtr _sensor_ptr);
FactorBaseConstPtr getFactorOf(const ProcessorBasePtr _processor_ptr) const;
FactorBaseConstPtr getFactorOf(const ProcessorBaseConstPtr _processor_ptr) const;
FactorBasePtr getFactorOf(const ProcessorBasePtr _processor_ptr);
FactorBasePtr getFactorOf(const ProcessorBasePtr _processor_ptr);
FactorBaseConstPtr getFactorOf(const ProcessorBasePtr _processor_ptr, const std::string& type) const;
FactorBaseConstPtr getFactorOf(const ProcessorBaseConstPtr _processor_ptr, const std::string& type) const;
FactorBasePtr getFactorOf(const ProcessorBasePtr _processor_ptr, const std::string& type);
FactorBasePtr getFactorOf(const ProcessorBasePtr _processor_ptr, const std::string& type);
unsigned int getHits() const;
unsigned int getHits() const;
Loading