Re-format new C++ files
[babeltrace.git] / src / plugins / ctf / lttng-live / data-stream.hpp
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright 2016 Philippe Proulx <pproulx@efficios.com>
5 */
6
7 #ifndef LTTNG_LIVE_DATA_STREAM_H
8 #define LTTNG_LIVE_DATA_STREAM_H
9
10 #include <stdio.h>
11 #include <stdint.h>
12
13 #include <glib.h>
14
15 #include "../common/msg-iter/msg-iter.hpp"
16 #include "lttng-live.hpp"
17
18 enum lttng_live_iterator_status lttng_live_lazy_msg_init(struct lttng_live_session *session,
19 bt_self_message_iterator *self_msg_iter);
20
21 struct lttng_live_stream_iterator *
22 lttng_live_stream_iterator_create(struct lttng_live_session *session, uint64_t ctf_trace_id,
23 uint64_t stream_id, bt_self_message_iterator *self_msg_iter);
24
25 void lttng_live_stream_iterator_destroy(struct lttng_live_stream_iterator *stream);
26
27 #endif /* LTTNG_LIVE_DATA_STREAM_H */
This page took 0.03002 seconds and 4 git commands to generate.