lib: make trace IR API const-correct
[babeltrace.git] / include / babeltrace / graph / notification-stream.h
index e95c7e5b2007b18dee515014788da6ab92735e28..2dea094cf790135b9dc74cb7dd2fecf0d5f270de 100644 (file)
@@ -2,8 +2,6 @@
 #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 <stdint.h>
-
-/* For bt_get() */
-#include <babeltrace/ref.h>
-
-/* For bt_bool */
-#include <babeltrace/types.h>
-
 #ifdef __cplusplus
 extern "C" {
 #endif
 
 struct bt_notification;
-struct bt_private_connection_private_notification_iterator;
-struct bt_clock_class;
+struct bt_self_notification_iterator;
 struct bt_clock_value;
 struct bt_stream;
 
-extern
-struct bt_notification *bt_notification_stream_begin_create(
-               struct bt_private_connection_private_notification_iterator *notification_iterator,
-               struct bt_stream *stream);
-
-extern
-struct bt_notification *bt_notification_stream_end_create(
-               struct bt_private_connection_private_notification_iterator *notification_iterator,
-               struct bt_stream *stream);
-
-extern struct bt_stream *bt_notification_stream_begin_borrow_stream(
+extern const struct bt_stream *bt_notification_stream_begin_borrow_stream(
                struct bt_notification *notification);
 
-static inline
-struct bt_stream *bt_notification_stream_begin_get_stream(
-               struct bt_notification *notification)
-{
-       return bt_get(bt_notification_stream_begin_borrow_stream(notification));
-}
-
-extern int bt_notification_stream_begin_set_clock_value(
-               struct bt_notification *notif,
-               struct bt_clock_class *clock_class, uint64_t raw_value,
-               bt_bool is_default);
-
-extern struct bt_clock_value *bt_notification_stream_begin_borrow_default_clock_value(
+extern const struct bt_clock_value *
+bt_notification_stream_begin_borrow_default_clock_value(
                struct bt_notification *notif);
 
-extern struct bt_stream *bt_notification_stream_end_borrow_stream(
+extern const struct bt_stream *bt_notification_stream_end_borrow_stream(
                struct bt_notification *notification);
 
-static inline
-struct bt_stream *bt_notification_stream_end_get_stream(
-               struct bt_notification *notification)
-{
-       return bt_get(bt_notification_stream_end_borrow_stream(notification));
-}
-
-extern int bt_notification_stream_end_set_clock_value(
-               struct bt_notification *notif,
-               struct bt_clock_class *clock_class, uint64_t raw_value,
-               bt_bool is_default);
-
-extern struct bt_clock_value *bt_notification_stream_end_borrow_default_clock_value(
+extern const struct bt_clock_value *
+bt_notification_stream_end_borrow_default_clock_value(
                struct bt_notification *notif);
 
 #ifdef __cplusplus
This page took 0.025175 seconds and 4 git commands to generate.