Skip to content
Snippets Groups Projects

ENH: Add retrieval and queries to Extern C interface

Merged Florian Spreckelsen requested to merge f-extended-c into f-files
1 file
+ 0
4
Compare changes
  • Side-by-side
  • Inline
+ 0
4
@@ -47,10 +47,6 @@ auto Parent::SetName(const std::string &name) -> void {
this->wrapped->set_name(name);
}
auto Parent::GetDescription() const -> const std::string & {
return this->wrapped->description();
}
auto Parent::SetId(const std::string &id) -> void { this->wrapped->set_id(id); }
[[nodiscard]] auto Parent::GetId() const -> const std::string & {
@@ -74,7+70,7 @@
// set the pointer to the new object which is owned by the RepeatedPtrField
parent.wrapped = destination;
}
Property::Property() : wrapped(Property::CreateProtoProperty()) {}
Loading