Values API: split into private and public APIs
[babeltrace.git] / cli / babeltrace-cfg.h
index 864f3daff1514a8db894b13c81010abf9bcc3cd5..d5559cae2b1d41a4f8e0333aa149f6e0f54e8423 100644 (file)
@@ -29,7 +29,7 @@
 #include <stdint.h>
 #include <stdbool.h>
 #include <babeltrace/values.h>
-#include <babeltrace/ref.h>
+#include <babeltrace/object.h>
 #include <babeltrace/object-internal.h>
 #include <babeltrace/compiler-internal.h>
 #include <babeltrace/graph/component-class.h>
@@ -49,7 +49,7 @@ struct bt_config_component {
        enum bt_component_class_type type;
        GString *plugin_name;
        GString *comp_cls_name;
-       struct bt_value *params;
+       struct bt_private_value *params;
        GString *instance_name;
 };
 
@@ -65,7 +65,7 @@ struct bt_config {
        struct bt_object base;
        bool debug;
        bool verbose;
-       struct bt_value *plugin_paths;
+       struct bt_private_value *plugin_paths;
        bool omit_system_plugin_path;
        bool omit_home_plugin_path;
        bool command_needs_plugins;
@@ -129,11 +129,11 @@ static inline
 struct bt_config_component *bt_config_get_component(GPtrArray *array,
                size_t index)
 {
-       return bt_get(g_ptr_array_index(array, index));
+       return bt_object_get_ref(g_ptr_array_index(array, index));
 }
 
 enum bt_value_status bt_config_append_plugin_paths(
-               struct bt_value *plugin_paths, const char *arg);
+               struct bt_private_value *plugin_paths, const char *arg);
 
 void bt_config_connection_destroy(struct bt_config_connection *connection);
 
This page took 0.024276 seconds and 4 git commands to generate.