Cleanup: remove bt_clock_snapshot_set_value_inline function
[babeltrace.git] / include / babeltrace / ctf-writer / stream-internal.h
index 3da0966433a669b0130722d0f00d855d156078eb..7985947831734bab6094f721ce69da0f368b01e9 100644 (file)
@@ -2,8 +2,6 @@
 #define BABELTRACE_CTF_WRITER_STREAM_INTERNAL_H
 
 /*
- * BabelTrace - CTF Writer: Stream
- *
  * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
  *
  * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
 #include <babeltrace/assert-internal.h>
 #include <babeltrace/assert-pre-internal.h>
 #include <babeltrace/babeltrace-internal.h>
-#include <babeltrace/babeltrace.h>
 #include <babeltrace/ctf-writer/serialize-internal.h>
 #include <babeltrace/ctf-writer/stream-internal.h>
 #include <babeltrace/ctf-writer/stream.h>
 #include <babeltrace/ctf-writer/utils-internal.h>
-#include <babeltrace/object-internal.h>
+#include <babeltrace/ctf-writer/object-internal.h>
 #include <stdint.h>
 
 struct bt_ctf_stream_common;
 
 struct bt_ctf_stream_common {
-       struct bt_object base;
+       struct bt_ctf_object base;
        int64_t id;
        struct bt_ctf_stream_class_common *stream_class;
        GString *name;
@@ -54,7 +51,7 @@ BT_HIDDEN
 int bt_ctf_stream_common_initialize(
                struct bt_ctf_stream_common *stream,
                struct bt_ctf_stream_class_common *stream_class, const char *name,
-               uint64_t id, bt_object_release_func release_func);
+               uint64_t id, bt_ctf_object_release_func release_func);
 
 BT_HIDDEN
 void bt_ctf_stream_common_finalize(struct bt_ctf_stream_common *stream);
This page took 0.025025 seconds and 4 git commands to generate.