Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions hardware_interface/include/hardware_interface/handle.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,20 +120,6 @@ class ReadWriteHandle : public ReadOnlyHandle<HandleType>
THROW_ON_NULLPTR(this->value_ptr_);
*this->value_ptr_ = value;
}

void set_value(const std::string & name, double value)
{
THROW_ON_NULLPTR(this->value_ptr_);
this->name_ = name;
*this->value_ptr_ = value;
}

void set_value(const char * name, double value)
{
THROW_ON_NULLPTR(this->value_ptr_);
this->name_ = name;
*this->value_ptr_ = value;
}
};

class StateInterface : public ReadOnlyHandle<StateInterface>
Expand Down