lib: rename plural file names to singular
[babeltrace.git] / include / babeltrace / trace-ir / attributes-internal.h
index 99d582dd084496a7406b399346f0382a4e5edd05..b679e122209f80261e34a3aacf11eea7b74ad2e8 100644 (file)
@@ -2,10 +2,6 @@
 #define BABELTRACE_TRACE_IR_ATTRIBUTES_H
 
 /*
- * attributes.c
- *
- * Babeltrace - Trace IR: Attributes internal
- *
  * Copyright (c) 2015 EfficiOS Inc. and Linux Foundation
  * Copyright (c) 2015 Philippe Proulx <pproulx@efficios.com>
  *
@@ -34,36 +30,36 @@ extern "C" {
 
 #include <stdint.h>
 #include <babeltrace/babeltrace-internal.h>
-#include <babeltrace/values.h>
+#include <babeltrace/value.h>
 
 BT_HIDDEN
-struct bt_private_value *bt_attributes_create(void);
+struct bt_value *bt_attributes_create(void);
 
 BT_HIDDEN
-void bt_attributes_destroy(struct bt_private_value *attr_obj);
+void bt_attributes_destroy(struct bt_value *attr_obj);
 
 BT_HIDDEN
-int64_t bt_attributes_get_count(struct bt_private_value *attr_obj);
+int64_t bt_attributes_get_count(const struct bt_value *attr_obj);
 
 BT_HIDDEN
-const char *bt_attributes_get_field_name(struct bt_private_value *attr_obj,
+const char *bt_attributes_get_field_name(const struct bt_value *attr_obj,
                uint64_t index);
 
 BT_HIDDEN
-struct bt_private_value *bt_attributes_borrow_field_value(
-               struct bt_private_value *attr_obj,
+struct bt_value *bt_attributes_borrow_field_value(
+               struct bt_value *attr_obj,
                uint64_t index);
 
 BT_HIDDEN
-int bt_attributes_set_field_value(struct bt_private_value *attr_obj,
-               const char *name, struct bt_private_value *value_obj);
+int bt_attributes_set_field_value(struct bt_value *attr_obj,
+               const char *name, struct bt_value *value_obj);
 
 BT_HIDDEN
-struct bt_private_value *bt_attributes_borrow_field_value_by_name(
-               struct bt_private_value *attr_obj, const char *name);
+struct bt_value *bt_attributes_borrow_field_value_by_name(
+               struct bt_value *attr_obj, const char *name);
 
 BT_HIDDEN
-int bt_attributes_freeze(struct bt_private_value *attr_obj);
+int bt_attributes_freeze(const struct bt_value *attr_obj);
 
 #ifdef __cplusplus
 }
This page took 0.024104 seconds and 4 git commands to generate.