Skip to content
Snippets Groups Projects
Commit aeccddd2 authored by florian's avatar florian
Browse files

FIX: Add missing SetDescription

parent d02a5592
No related branches found
No related tags found
3 merge requests!12F consolidation,!9Draft: API: remove UniqueResult, lower-case at, size for ResultSet,!8ENH: Add retrieval and queries to Extern C interface
This commit is part of merge request !8. Comments created here will be created in the context of that merge request.
......@@ -442,7 +442,7 @@ public:
auto SetRole(const std::string &role) -> void;
auto SetName(const std::string &name) -> void;
auto SetDescription(const std::string &description) -> void;
auto SetValue(const std::string &value) -> void;
auto SetUnit(const std::string &unit) -> void;
// Currently no references or lists.
......
......@@ -189,6 +189,10 @@ auto Entity::SetName(const std::string &name) -> void {
this->wrapped->set_name(name);
}
auto Entity::SetDescription(const std::string &description) -> void {
this->wrapped->set_description(description);
}
auto Entity::SetValue(const std::string &value) -> void {
this->wrapped->set_value(value);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment