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
2 unresolved threads
1 file
+ 4
0
Compare changes
  • Side-by-side
  • Inline
+ 4
0
@@ -47,6 +47,10 @@ 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+78,7 @@
Property::Property() : wrapped(Property::CreateProtoProperty()) {}
auto Property::CreateProtoProperty() -> ProtoProperty * {
return google::protobuf::Arena::CreateMessage<ProtoProperty>(get_arena());
}
Loading