Cleanup: add `#include <stdbool.h>` whenever `bool` type is used
[babeltrace.git] / src / lib / trace-ir / trace.h
index c5c244b58dcf29be9dbaf1a23a63e8c2ace57c46..3c53498ffcb9de3ec9be6bbc4d0950d3e02a8358 100644 (file)
@@ -34,8 +34,9 @@
 #include <babeltrace2/value.h>
 #include <babeltrace2/types.h>
 #include <glib.h>
+#include <stdbool.h>
 #include <sys/types.h>
-#include "compat/uuid.h"
+#include "common/uuid.h"
 
 #include "attributes.h"
 #include "clock-class.h"
@@ -45,6 +46,9 @@
 struct bt_trace {
        struct bt_object base;
 
+       /* Owned by this */
+       struct bt_value *user_attributes;
+
        /* Owned by this */
        struct bt_trace_class *class;
 
@@ -56,7 +60,7 @@ struct bt_trace {
        } name;
 
        struct {
-               uint8_t uuid[BABELTRACE_UUID_LEN];
+               bt_uuid_t uuid;
 
                /* NULL or `uuid` above */
                bt_uuid value;
This page took 0.024069 seconds and 4 git commands to generate.