Removed unneeded ctf_* forward declarations from babeltrace.h
[babeltrace.git] / include / babeltrace / ctf / events-internal.h
CommitLineData
e4195791
MD
1#ifndef _BABELTRACE_CTF_EVENTS_INTERNAL_H
2#define _BABELTRACE_CTF_EVENTS_INTERNAL_H
3
4/*
5 * BabelTrace
6 *
7 * CTF events API (internal)
8 *
9 * Copyright 2011-2012 EfficiOS Inc. and Linux Foundation
10 *
11 * Author: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12 * Julien Desfossez <julien.desfossez@efficios.com>
13 *
14 * Permission is hereby granted, free of charge, to any person obtaining
15 * a copy of this software and associated documentation files (the
16 * "Software"), to deal in the Software without restriction, including
17 * without limitation the rights to use, copy, modify, merge, publish,
18 * distribute, sublicense, and/or sell copies of the Software, and to
19 * permit persons to whom the Software is furnished to do so, subject to
20 * the following conditions:
21 *
22 * The above copyright notice and this permission notice shall be
23 * included in all copies or substantial portions of the Software.
24 */
25
26#include <babeltrace/iterator-internal.h>
27
28struct bt_ctf_iter {
29 struct bt_iter parent;
30 struct bt_ctf_event current_ctf_event; /* last read event */
31};
32
33#endif /*_BABELTRACE_CTF_EVENTS_INTERNAL_H */
This page took 0.024437 seconds and 4 git commands to generate.