Skip to content
Snippets Groups Projects

Draft: Resolve "Implementation of new nodes creation"

Open Joan Vallvé Navarro requested to merge 454-implementation-of-new-nodes-creation into devel
1 file
+ 1
3
Compare changes
  • Side-by-side
  • Inline
@@ -31,7 +31,6 @@ namespace wolf
unsigned int SensorBase::sensor_id_count_ = 0;
SensorBase::SensorBase(const std::string& _type,
const int& _dim_compatible,
const TypeComposite& _state_types,
const YAML::Node& _params)
: NodeStateBlocks("SENSOR",
@@ -43,8 +42,7 @@ SensorBase::SensorBase(const std::string& _type,
sensor_id_(++sensor_id_count_), // simple ID factory
state_block_dynamic_(),
last_capture_(nullptr),
params_(Clone(_params)),
dim_compatible_(_dim_compatible)
params_(Clone(_params))
{
setName(_params["name"].as<std::string>());
Loading