.gitignore: add some more IDE / tools related file
[babeltrace.git] / src / plugins / utils / counter / counter.h
index 28800909b4ede27a2668b9635b5ab3221fa4ba67..302d699329ef9e25fdc0571152992228c9e8bc56 100644 (file)
@@ -4,8 +4,8 @@
  * Copyright 2017 Philippe Proulx <pproulx@efficios.com>
  */
 
-#ifndef BABELTRACE_PLUGINS_UTILS_COUNTER_H
-#define BABELTRACE_PLUGINS_UTILS_COUNTER_H
+#ifndef BABELTRACE_PLUGINS_UTILS_COUNTER_COUNTER_H
+#define BABELTRACE_PLUGINS_UTILS_COUNTER_COUNTER_H
 
 #include <glib.h>
 #include <babeltrace2/babeltrace.h>
 #include <stdint.h>
 #include "common/macros.h"
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 struct counter {
        bt_message_iterator *msg_iter;
        struct {
@@ -34,20 +38,20 @@ struct counter {
        bt_self_component *self_comp;
 };
 
-BT_HIDDEN
 bt_component_class_initialize_method_status counter_init(
                bt_self_component_sink *component,
                bt_self_component_sink_configuration *config,
                const bt_value *params, void *init_method_data);
 
-BT_HIDDEN
 void counter_finalize(bt_self_component_sink *component);
 
-BT_HIDDEN
 bt_component_class_sink_graph_is_configured_method_status counter_graph_is_configured(
                bt_self_component_sink *component);
 
-BT_HIDDEN
 bt_component_class_sink_consume_method_status counter_consume(bt_self_component_sink *component);
 
-#endif /* BABELTRACE_PLUGINS_UTILS_COUNTER_H */
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* BABELTRACE_PLUGINS_UTILS_COUNTER_COUNTER_H */
This page took 0.023752 seconds and 4 git commands to generate.