ir: add bt_ctf_trace_get_stream_class_by_id()
[babeltrace.git] / include / babeltrace / ctf-ir / stream-internal.h
index db5eeaf6896bcffaa67cf5d0425dfdaad83bf961..b0011ddfdbe91f2e721bc9aeb0d7d652f69b2f14 100644 (file)
@@ -28,7 +28,7 @@
  */
 
 #include <babeltrace/ctf-ir/stream.h>
-#include <babeltrace/ctf-writer/ref-internal.h>
+#include <babeltrace/ctf-ir/common-internal.h>
 #include <babeltrace/ctf-writer/clock.h>
 #include <babeltrace/ctf-writer/event-fields.h>
 #include <babeltrace/ctf-writer/event-types.h>
 #include <glib.h>
 
 struct bt_ctf_stream {
-       struct bt_ctf_ref ref_count;
+       struct bt_ctf_base base;
        /* Trace owning this stream. A stream does not own a trace. */
        struct bt_ctf_trace *trace;
        uint32_t id;
        struct bt_ctf_stream_class *stream_class;
        /* Array of pointers to bt_ctf_event for the current packet */
        GPtrArray *events;
-       /* Array of pointers to bt_ctf_field associated with each event*/
+       /* Array of pointers to bt_ctf_field associated with each event */
+       GPtrArray *event_headers;
        GPtrArray *event_contexts;
        struct ctf_stream_pos pos;
        unsigned int flushed_packet_count;
        struct bt_ctf_field *packet_header;
        struct bt_ctf_field *packet_context;
+       struct bt_ctf_field *event_header;
        struct bt_ctf_field *event_context;
 };
 
This page took 0.02536 seconds and 4 git commands to generate.