lib: make trace IR API const-correct
[babeltrace.git] / include / babeltrace / graph / notification-stream.h
index bdcf4c96011157d9530c6bce81f9b1c439a51861..2dea094cf790135b9dc74cb7dd2fecf0d5f270de 100644 (file)
@@ -1,9 +1,7 @@
-#ifndef BABELTRACE_COMPONENT_NOTIFICATION_STREAM_H
-#define BABELTRACE_COMPONENT_NOTIFICATION_STREAM_H
+#ifndef BABELTRACE_GRAPH_NOTIFICATION_STREAM_H
+#define BABELTRACE_GRAPH_NOTIFICATION_STREAM_H
 
 /*
- * BabelTrace - Plug-in Stream-related Notifications
- *
  * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
  *
  * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
  * SOFTWARE.
  */
 
-#include <babeltrace/graph/notification.h>
-#include <babeltrace/ctf-ir/stream.h>
-
 #ifdef __cplusplus
 extern "C" {
 #endif
 
-/*** BT_NOTIFICATION_TYPE_STREAM_END ***/
-struct bt_notification *bt_notification_stream_end_create(
-               struct bt_ctf_stream *stream);
-struct bt_ctf_stream *bt_notification_stream_end_get_stream(
+struct bt_notification;
+struct bt_self_notification_iterator;
+struct bt_clock_value;
+struct bt_stream;
+
+extern const struct bt_stream *bt_notification_stream_begin_borrow_stream(
                struct bt_notification *notification);
 
+extern const struct bt_clock_value *
+bt_notification_stream_begin_borrow_default_clock_value(
+               struct bt_notification *notif);
+
+extern const struct bt_stream *bt_notification_stream_end_borrow_stream(
+               struct bt_notification *notification);
+
+extern const struct bt_clock_value *
+bt_notification_stream_end_borrow_default_clock_value(
+               struct bt_notification *notif);
+
 #ifdef __cplusplus
 }
 #endif
 
-#endif /* BABELTRACE_COMPONENT_NOTIFICATION_STREAM_H */
+#endif /* BABELTRACE_GRAPH_NOTIFICATION_STREAM_H */
This page took 0.024508 seconds and 4 git commands to generate.