lib: make public reference count functions have strict types
[babeltrace.git] / include / babeltrace / graph / component-class-const.h
index bfd1b904dded28265a971ccfc1e83c6b92a8c9d5..59dba54ca4387da7d5fe22a6afb1d8fe4a05e897 100644 (file)
@@ -75,6 +75,25 @@ bt_bool bt_component_class_is_sink(
                BT_COMPONENT_CLASS_TYPE_SINK;
 }
 
+extern void bt_component_class_get_ref(
+               const struct bt_component_class *component_class);
+
+extern void bt_component_class_put_ref(
+               const struct bt_component_class *component_class);
+
+#define BT_COMPONENT_CLASS_PUT_REF_AND_RESET(_var)     \
+       do {                                            \
+               bt_component_class_put_ref(_var);       \
+               (_var) = NULL;                          \
+       } while (0)
+
+#define BT_COMPONENT_CLASS_MOVE_REF(_var_dst, _var_src)        \
+       do {                                            \
+               bt_component_class_put_ref(_var_dst);   \
+               (_var_dst) = (_var_src);                \
+               (_var_src) = NULL;                      \
+       } while (0)
+
 #ifdef __cplusplus
 }
 #endif
This page took 0.02319 seconds and 4 git commands to generate.