.gitignore: add some more IDE / tools related file
[babeltrace.git] / src / plugins / ctf / fs-src / fs.hpp
index 9add53dabd13fa4b98d5b137e254414d41cd0993..4f7837d693d1c1887224a1828a83c28391d4b624 100644 (file)
@@ -7,8 +7,8 @@
  * BabelTrace - CTF on File System Component
  */
 
-#ifndef BABELTRACE_PLUGIN_CTF_FS_H
-#define BABELTRACE_PLUGIN_CTF_FS_H
+#ifndef BABELTRACE_PLUGINS_CTF_FS_SRC_FS_HPP
+#define BABELTRACE_PLUGINS_CTF_FS_SRC_FS_HPP
 
 #include <glib.h>
 
@@ -74,8 +74,10 @@ struct ctf_fs_component
 {
     using UP = std::unique_ptr<ctf_fs_component>;
 
-    explicit ctf_fs_component(const bt2c::Logger& parentLogger) noexcept :
-        logger {parentLogger, "PLUGIN/SRC.CTF.FS/COMP"}
+    explicit ctf_fs_component(const ctf::src::ClkClsCfg& clkClsCfgParam,
+                              const bt2c::Logger& parentLogger) noexcept :
+        logger {parentLogger, "PLUGIN/SRC.CTF.FS/COMP"},
+        clkClsCfg {clkClsCfgParam}
     {
     }
 
@@ -93,8 +95,8 @@ struct ctf_fs_msg_iter_data
     using UP = std::unique_ptr<ctf_fs_msg_iter_data>;
 
     explicit ctf_fs_msg_iter_data(bt_self_message_iterator *selfMsgIter) :
-        self_msg_iter {selfMsgIter}, logger {bt2::SelfMessageIterator {self_msg_iter},
-                                             "PLUGIN/SRC.CTF.FS/MSG-ITER"}
+        self_msg_iter {selfMsgIter},
+        logger {bt2::SelfMessageIterator {self_msg_iter}, "PLUGIN/SRC.CTF.FS/MSG-ITER"}
     {
     }
 
@@ -197,4 +199,4 @@ ctf::src::fs::Parameters read_src_fs_parameters(bt2::ConstMapValue params,
 
 std::string ctf_fs_make_port_name(ctf_fs_ds_file_group *ds_file_group);
 
-#endif /* BABELTRACE_PLUGIN_CTF_FS_H */
+#endif /* BABELTRACE_PLUGINS_CTF_FS_SRC_FS_HPP */
This page took 0.025665 seconds and 4 git commands to generate.