lib: metadata: add missing non-const borrowing accessors
[babeltrace.git] / lib / trace-ir / stream-class.c
index b76580d5b4796af6643e0f9c447ebf9fbb1df095..1271374260a1fc513f9546b8975512706708828e 100644 (file)
@@ -284,6 +284,14 @@ bt_stream_class_borrow_packet_context_field_class_const(
        return stream_class->packet_context_fc;
 }
 
+struct bt_field_class *
+bt_stream_class_borrow_packet_context_field_class(
+               struct bt_stream_class *stream_class)
+{
+       BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
+       return stream_class->packet_context_fc;
+}
+
 enum bt_stream_class_status bt_stream_class_set_packet_context_field_class(
                struct bt_stream_class *stream_class,
                struct bt_field_class *field_class)
@@ -334,6 +342,14 @@ bt_stream_class_borrow_event_common_context_field_class_const(
        return stream_class->event_common_context_fc;
 }
 
+struct bt_field_class *
+bt_stream_class_borrow_event_common_context_field_class(
+               struct bt_stream_class *stream_class)
+{
+       BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
+       return stream_class->event_common_context_fc;
+}
+
 enum bt_stream_class_status
 bt_stream_class_set_event_common_context_field_class(
                struct bt_stream_class *stream_class,
This page took 0.024039 seconds and 4 git commands to generate.