tests: compile all unit tests as C++
[lttng-tools.git] / include / lttng / action / rate-policy-internal.h
index ca9d2c00e952567bb2a33d2a62d0a8db310e2f16..708892cba86b11134cd97f07dcc7167208d690df 100644 (file)
 #include <common/macros.h>
 #include <common/payload-view.h>
 #include <lttng/action/rate-policy.h>
+#include <lttng/lttng-error.h>
 #include <stdbool.h>
 
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 struct mi_writer;
 
-LTTNG_HIDDEN
 int lttng_rate_policy_serialize(struct lttng_rate_policy *rate_policy,
                struct lttng_payload *buf);
 
-LTTNG_HIDDEN
 ssize_t lttng_rate_policy_create_from_payload(struct lttng_payload_view *view,
                struct lttng_rate_policy **rate_policy);
 
-LTTNG_HIDDEN
 bool lttng_rate_policy_is_equal(const struct lttng_rate_policy *a,
                const struct lttng_rate_policy *b);
 
-LTTNG_HIDDEN
 const char *lttng_rate_policy_type_string(
                enum lttng_rate_policy_type rate_policy_type);
 
-LTTNG_HIDDEN
 struct lttng_rate_policy *lttng_rate_policy_copy(
                const struct lttng_rate_policy *source);
 
-LTTNG_HIDDEN
 bool lttng_rate_policy_should_execute(
                const struct lttng_rate_policy *policy, uint64_t counter);
 
-LTTNG_HIDDEN
 enum lttng_error_code lttng_rate_policy_mi_serialize(
                const struct lttng_rate_policy *policy,
                struct mi_writer *writer);
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif /* LTTNG_RATE_POLICY */
This page took 0.024345 seconds and 4 git commands to generate.