CTF writer: use own `bt_ctf_object` and `bt_ctf_value` internal APIs
[babeltrace.git] / include / babeltrace / ctf-writer / attributes-internal.h
index d0f19dfab26a128d60a9979bbac8b86ba4dcbe5b..8b372f6e04d7d72900eda63a9082a7afcd367f59 100644 (file)
@@ -30,35 +30,35 @@ extern "C" {
 
 #include <stdint.h>
 #include <babeltrace/babeltrace-internal.h>
-#include <babeltrace/private-values.h>
+#include <babeltrace/ctf-writer/values-internal.h>
 
 BT_HIDDEN
-struct bt_private_value *bt_ctf_attributes_create(void);
+struct bt_ctf_private_value *bt_ctf_attributes_create(void);
 
 BT_HIDDEN
-void bt_ctf_attributes_destroy(struct bt_private_value *attr_obj);
+void bt_ctf_attributes_destroy(struct bt_ctf_private_value *attr_obj);
 
 BT_HIDDEN
-int64_t bt_ctf_attributes_get_count(struct bt_private_value *attr_obj);
+int64_t bt_ctf_attributes_get_count(struct bt_ctf_private_value *attr_obj);
 
 BT_HIDDEN
-const char *bt_ctf_attributes_get_field_name(struct bt_private_value *attr_obj,
+const char *bt_ctf_attributes_get_field_name(struct bt_ctf_private_value *attr_obj,
                uint64_t index);
 
 BT_HIDDEN
-struct bt_private_value *bt_ctf_attributes_borrow_field_value(struct bt_private_value *attr_obj,
+struct bt_ctf_private_value *bt_ctf_attributes_borrow_field_value(struct bt_ctf_private_value *attr_obj,
                uint64_t index);
 
 BT_HIDDEN
-int bt_ctf_attributes_set_field_value(struct bt_private_value *attr_obj,
-               const char *name, struct bt_private_value *value_obj);
+int bt_ctf_attributes_set_field_value(struct bt_ctf_private_value *attr_obj,
+               const char *name, struct bt_ctf_private_value *value_obj);
 
 BT_HIDDEN
-struct bt_private_value *bt_ctf_attributes_borrow_field_value_by_name(
-               struct bt_private_value *attr_obj, const char *name);
+struct bt_ctf_private_value *bt_ctf_attributes_borrow_field_value_by_name(
+               struct bt_ctf_private_value *attr_obj, const char *name);
 
 BT_HIDDEN
-int bt_ctf_attributes_freeze(struct bt_private_value *attr_obj);
+int bt_ctf_attributes_freeze(struct bt_ctf_private_value *attr_obj);
 
 #ifdef __cplusplus
 }
This page took 0.024187 seconds and 4 git commands to generate.