Skip to content
Snippets Groups Projects
Verified Commit b339a6b5 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

EHN: implement Parent::GetDescription()

parent af35fe5b
No related branches found
No related tags found
No related merge requests found
Pipeline #11712 passed
Pipeline: caosdb-cppinttest

#11723

    ......@@ -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 & {
    ......
    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