lib: fix can_seek_beginning method type cast
[babeltrace.git] / src / lib / trace-ir / trace-class.h
index 7c8add5c7f9e9853a44d768a44401946da82ce39..28123a91d244998468613f527d298b71810f034f 100644 (file)
 #include <babeltrace2/trace-ir/field.h>
 #include "lib/object.h"
 #include "lib/object-pool.h"
-#include "common/babeltrace.h"
+#include "common/macros.h"
 #include <babeltrace2/value.h>
 #include <babeltrace2/types.h>
 #include <glib.h>
 #include <sys/types.h>
-#include "compat/uuid.h"
 
 #include "stream-class.h"
 #include "attributes.h"
 struct bt_trace_class {
        struct bt_object base;
 
-       struct {
-               GString *str;
-
-               /* NULL or `str->str` above */
-               const char *value;
-       } name;
-
-       struct {
-               uint8_t uuid[BABELTRACE_UUID_LEN];
-
-               /* NULL or `uuid` above */
-               bt_uuid value;
-       } uuid;
-
-       struct bt_value *environment;
+       /* Owned by this */
+       struct bt_value *user_attributes;
 
        /* Array of `struct bt_stream_class *` */
        GPtrArray *stream_classes;
This page took 0.024244 seconds and 4 git commands to generate.