Add ctf fs component skeleton
[babeltrace.git] / plugins / ctf / fs / fs-internal.h
index 3f87bd0ea886e546de8aaf159a870d81a6e3a025..448fff2adeae1f6ee073a99eef4303290de377c4 100644 (file)
 #include <babeltrace/babeltrace-internal.h>
 #include <babeltrace/plugin/component.h>
 
-#define FS_COMPONENT_NAME "ctf"
-#define FS_COMPONENT_DESCRIPTION \
+#define CTF_FS_COMPONENT_NAME "ctf"
+#define CTF_FS_COMPONENT_DESCRIPTION \
        "Component used to read a CTF trace located on a file system."
 
+struct ctf_fs_component_options {
+       bool opt_dummy : 1;
+};
+
+struct ctf_fs_component {
+       struct ctf_fs_component_options options;
+};
+
 BT_HIDDEN
-enum bt_component_status fs_init(struct bt_component *source,
+enum bt_component_status ctf_fs_init(struct bt_component *source,
                struct bt_value *params);
 
 #endif /* BABELTRACE_PLUGIN_CTF_FS_INTERNAL_H */
This page took 0.02323 seconds and 4 git commands to generate.