API Fix : missing list fields of event decl
[babeltrace.git] / include / babeltrace / ctf / events-internal.h
index c3ee8fcda401e28557d1545407e62e45aa7f10f5..aaa09262321dfc32f62dddb185430bc7d4e771f3 100644 (file)
 #include <babeltrace/iterator-internal.h>
 #include <babeltrace/ctf/callbacks.h>
 #include <babeltrace/ctf/callbacks-internal.h>
+#include <babeltrace/ctf-ir/metadata.h>
 #include <glib.h>
 
-struct ctf_stream;
-struct ctf_event_definition;
+struct ctf_stream_definition;
+
 /*
- * the structure to manipulate events
+ * These structures are public mappings to internal ctf_event structures.
  */
 struct bt_ctf_event {
-       struct ctf_stream *stream;
-       struct ctf_event_definition *event;
+       struct ctf_event_definition *parent;
+};
+
+struct bt_ctf_event_decl {
+       struct ctf_event_declaration parent;
+       GPtrArray *context_decl;
+       GPtrArray *fields_decl;
+       GPtrArray *packet_header_decl;
+       GPtrArray *event_context_decl;
+       GPtrArray *event_header_decl;
+       GPtrArray *packet_context_decl;
 };
 
 struct bt_ctf_iter {
This page took 0.023612 seconds and 4 git commands to generate.