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

DRAFT: Inroduce structs for datatype and value

parent 1f50e469
No related branches found
No related tags found
1 merge request!24API: Introduce value and datatype structs to Extern C
Checking pipeline status
......@@ -334,6 +334,16 @@ typedef struct caosdb_entity_message {
bool _deletable = false;
} caosdb_entity_message;
typedef struct caosdb_entity_value {
void *wrapped_value;
bool _deletable = false;
} caosdb_entity_value;
typedef struct caosdb_entity_datatype {
void *wrapped_datatype;
bool _deletable = false;
} caosdb_entity_datatype;
// GETTERS FOR EVERYTHING
int caosdb_entity_entity_get_id(caosdb_entity_entity *entity, char **out);
int caosdb_entity_entity_get_role(caosdb_entity_entity *entity, char **out);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment