Remove notification iterator seeking API until it's supported
[babeltrace.git] / plugins / utils / trimmer / iterator.h
index 3fe3dc4b735dad991d9e367656e23f594d78e724..dc0dcccbc33107da308fe301dc4328637d859791 100644 (file)
  */
 
 #include "trimmer.h"
-#include <babeltrace/component/notification/notification.h>
-#include <babeltrace/component/notification/iterator.h>
-#include <babeltrace/component/private-component.h>
-#include <babeltrace/component/private-port.h>
+#include <babeltrace/graph/notification.h>
+#include <babeltrace/graph/notification-iterator.h>
+#include <babeltrace/graph/private-component.h>
+#include <babeltrace/graph/private-port.h>
 
 struct trimmer_iterator {
        /* Input iterator associated with this output iterator. */
        struct bt_notification_iterator *input_iterator;
+       struct bt_notification *current_notification;
+       FILE *err;
+       /* Map between reader and writer packets. */
+       GHashTable *packet_map;
 };
 
 BT_HIDDEN
@@ -50,9 +54,4 @@ BT_HIDDEN
 struct bt_notification_iterator_next_return trimmer_iterator_next(
                struct bt_private_notification_iterator *iterator);
 
-BT_HIDDEN
-enum bt_notification_iterator_status trimmer_iterator_seek_time(
-               struct bt_private_notification_iterator *iterator,
-               int64_t time);
-
 #endif /* BABELTRACE_PLUGIN_TRIMMER_ITERATOR_H */
This page took 0.026454 seconds and 4 git commands to generate.