Cleanup: add `#include <stdbool.h>` whenever `bool` type is used
[babeltrace.git] / src / lib / trace-ir / trace-class.h
index 0b06bf32fda0a8fa27fa3e645922591e50053c89..84271f6bb93fb5ea4b0c2ef56b596e8375384ca2 100644 (file)
@@ -35,6 +35,7 @@
 #include <babeltrace2/types.h>
 #include <glib.h>
 #include <sys/types.h>
+#include <stdbool.h>
 
 #include "stream-class.h"
 #include "attributes.h"
@@ -43,6 +44,9 @@
 struct bt_trace_class {
        struct bt_object base;
 
+       /* Owned by this */
+       struct bt_value *user_attributes;
+
        /* Array of `struct bt_stream_class *` */
        GPtrArray *stream_classes;
 
This page took 0.023665 seconds and 4 git commands to generate.