include/babeltrace/graph: fix some include guards
[babeltrace.git] / include / babeltrace / graph / notification-event.h
index e5947b7ed09b4c8fd04b0016b938c0525696f9e0..af2666b8ebd0d83dbeb4328a3479cf5ea50dea00 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef BABELTRACE_COMPONENT_NOTIFICATION_EVENT_H
-#define BABELTRACE_COMPONENT_NOTIFICATION_EVENT_H
+#ifndef BABELTRACE_GRAPH_NOTIFICATION_EVENT_H
+#define BABELTRACE_GRAPH_NOTIFICATION_EVENT_H
 
 /*
  * BabelTrace - Plug-in Event Notification
@@ -32,7 +32,8 @@ extern "C" {
 #endif
 
 struct bt_notification;
-struct bt_ctf_event;
+struct bt_event;
+struct bt_clock_class_priority_map;
 
 /***BT_NOTIFICATION_TYPE_EVENT ***/
 /**
@@ -44,7 +45,8 @@ struct bt_ctf_event;
  * @see #bt_notification_type
  */
 extern struct bt_notification *bt_notification_event_create(
-               struct bt_ctf_event *event);
+               struct bt_event *event,
+               struct bt_clock_class_priority_map *clock_class_priority_map);
 
 /**
  * Get an event notification's event.
@@ -52,13 +54,17 @@ extern struct bt_notification *bt_notification_event_create(
  * @param notification Event notification instance
  * @returns            An event instance
  *
- * @see #bt_ctf_event
+ * @see #bt_event
  */
-extern struct bt_ctf_event *bt_notification_event_get_event(
+extern struct bt_event *bt_notification_event_get_event(
+               struct bt_notification *notification);
+
+extern struct bt_clock_class_priority_map *
+bt_notification_event_get_clock_class_priority_map(
                struct bt_notification *notification);
 
 #ifdef __cplusplus
 }
 #endif
 
-#endif /* BABELTRACE_COMPONENT_NOTIFICATION_EVENT_H */
+#endif /* BABELTRACE_GRAPH_NOTIFICATION_EVENT_H */
This page took 0.025252 seconds and 4 git commands to generate.