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

DOC: Add remark on release functions to C-API documentation

parent 314bd34f
Branches
Tags
1 merge request!23Copy constructor for result set and entity
Pipeline #13358 passed
Pipeline: caosdb-cppinttest

#13362

    ......@@ -29,7 +29,11 @@ C API
    When working with libcaosdb's C API keep the following in
    mind. Delete all objects (transactions, entities, properties,
    parents, ...) that you created using a `caosdb_..._create_...`
    function and only those.
    function or released using a `caosdb_..._release_...` and only
    those. This means, that any objects set by a `caosdb_..._get_...`
    function, are managed by another owning object (e.g., a connection
    object managed by the connection manager) should not be deleted
    manually.
    The underlying reason is that all C++ objects are realized in the
    Extern C interface as mutable structs containing a void pointer to
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment