tests: remove problematic (and unnecessary) type annotation
[babeltrace.git] / include / babeltrace2 / graph / self-component.h
index b995c0889bac554791bc3b6b873ad9bdc1c5afb0..77e299af185632056868e8e49cd7f8a604452065 100644 (file)
@@ -1,28 +1,14 @@
-#ifndef BABELTRACE2_GRAPH_SELF_COMPONENT_H
-#define BABELTRACE2_GRAPH_SELF_COMPONENT_H
-
 /*
- * Copyright (c) 2010-2019 EfficiOS Inc. and Linux Foundation
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
+ * SPDX-License-Identifier: MIT
  *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
+ * Copyright (C) 2010-2019 EfficiOS Inc. and Linux Foundation
  */
 
+#ifndef BABELTRACE2_GRAPH_SELF_COMPONENT_H
+#define BABELTRACE2_GRAPH_SELF_COMPONENT_H
+
+/* IWYU pragma: private, include <babeltrace2/babeltrace.h> */
+
 #ifndef __BT_IN_BABELTRACE_H
 # error "Please include <babeltrace2/babeltrace.h> instead."
 #endif
@@ -200,7 +186,8 @@ extern bt_self_component_add_port_status
 bt_self_component_source_add_output_port(
                bt_self_component_source *self_component,
                const char *name, void *user_data,
-               bt_self_component_port_output **self_component_port);
+               bt_self_component_port_output **self_component_port)
+               __BT_NOEXCEPT;
 
 /*!
 @brief
@@ -244,7 +231,8 @@ extern bt_self_component_add_port_status
 bt_self_component_filter_add_input_port(
                bt_self_component_filter *self_component,
                const char *name, void *user_data,
-               bt_self_component_port_input **self_component_port);
+               bt_self_component_port_input **self_component_port)
+               __BT_NOEXCEPT;
 
 /*!
 @brief
@@ -288,7 +276,8 @@ extern bt_self_component_add_port_status
 bt_self_component_filter_add_output_port(
                bt_self_component_filter *self_component,
                const char *name, void *user_data,
-               bt_self_component_port_output **self_component_port);
+               bt_self_component_port_output **self_component_port)
+               __BT_NOEXCEPT;
 
 /*!
 @brief
@@ -333,7 +322,8 @@ extern bt_self_component_add_port_status
 bt_self_component_sink_add_input_port(
                bt_self_component_sink *self_component,
                const char *name, void *user_data,
-               bt_self_component_port_input **self_component_port);
+               bt_self_component_port_input **self_component_port)
+               __BT_NOEXCEPT;
 
 /*! @} */
 
@@ -373,7 +363,7 @@ bt_self_component_sink_add_input_port(
 extern bt_self_component_port_output *
 bt_self_component_source_borrow_output_port_by_index(
                bt_self_component_source *self_component,
-               uint64_t index);
+               uint64_t index) __BT_NOEXCEPT;
 
 /*!
 @brief
@@ -406,7 +396,7 @@ bt_self_component_source_borrow_output_port_by_index(
 extern bt_self_component_port_input *
 bt_self_component_filter_borrow_input_port_by_index(
                bt_self_component_filter *self_component,
-               uint64_t index);
+               uint64_t index) __BT_NOEXCEPT;
 
 /*!
 @brief
@@ -439,7 +429,7 @@ bt_self_component_filter_borrow_input_port_by_index(
 extern bt_self_component_port_output *
 bt_self_component_filter_borrow_output_port_by_index(
                bt_self_component_filter *self_component,
-               uint64_t index);
+               uint64_t index) __BT_NOEXCEPT;
 
 /*!
 @brief
@@ -471,7 +461,8 @@ bt_self_component_filter_borrow_output_port_by_index(
 */
 extern bt_self_component_port_input *
 bt_self_component_sink_borrow_input_port_by_index(
-               bt_self_component_sink *self_component, uint64_t index);
+               bt_self_component_sink *self_component, uint64_t index)
+               __BT_NOEXCEPT;
 
 /*!
 @brief
@@ -501,7 +492,7 @@ function returns \c NULL.
 extern bt_self_component_port_output *
 bt_self_component_source_borrow_output_port_by_name(
                bt_self_component_source *self_component,
-               const char *name);
+               const char *name) __BT_NOEXCEPT;
 
 /*!
 @brief
@@ -531,7 +522,7 @@ function returns \c NULL.
 extern bt_self_component_port_input *
 bt_self_component_filter_borrow_input_port_by_name(
                bt_self_component_filter *self_component,
-               const char *name);
+               const char *name) __BT_NOEXCEPT;
 
 /*!
 @brief
@@ -561,7 +552,7 @@ function returns \c NULL.
 extern bt_self_component_port_output *
 bt_self_component_filter_borrow_output_port_by_name(
                bt_self_component_filter *self_component,
-               const char *name);
+               const char *name) __BT_NOEXCEPT;
 
 /*!
 @brief
@@ -591,7 +582,7 @@ function returns \c NULL.
 extern bt_self_component_port_input *
 bt_self_component_sink_borrow_input_port_by_name(
                bt_self_component_sink *self_component,
-               const char *name);
+               const char *name) __BT_NOEXCEPT;
 
 /*! @} */
 
@@ -616,7 +607,8 @@ bt_self_component_sink_borrow_input_port_by_name(
     Returns the user data of a component.
 */
 extern void bt_self_component_set_data(
-               bt_self_component *self_component, void *user_data);
+               bt_self_component *self_component, void *user_data)
+               __BT_NOEXCEPT;
 
 /*!
 @brief
@@ -634,7 +626,7 @@ extern void bt_self_component_set_data(
     Sets the user data of a component.
 */
 extern void *bt_self_component_get_data(
-               const bt_self_component *self_component);
+               const bt_self_component *self_component) __BT_NOEXCEPT;
 
 /*! @} */
 
@@ -663,7 +655,7 @@ extern void *bt_self_component_get_data(
 */
 extern
 uint64_t bt_self_component_get_graph_mip_version(
-               bt_self_component *self_component);
+               bt_self_component *self_component) __BT_NOEXCEPT;
 
 /*! @} */
 
@@ -693,7 +685,7 @@ uint64_t bt_self_component_get_graph_mip_version(
     Adds an interrupter to a graph.
 */
 extern bt_bool bt_self_component_sink_is_interrupted(
-               const bt_self_component_sink *self_component);
+               const bt_self_component_sink *self_component) __BT_NOEXCEPT;
 
 /*! @} */
 
@@ -719,7 +711,7 @@ extern bt_bool bt_self_component_sink_is_interrupted(
 */
 static inline
 const bt_component *bt_self_component_as_component(
-               bt_self_component *self_component)
+               bt_self_component *self_component) __BT_NOEXCEPT
 {
        return __BT_UPCAST(bt_component, self_component);
 }
@@ -743,7 +735,7 @@ const bt_component *bt_self_component_as_component(
 static inline
 const bt_component_source *
 bt_self_component_source_as_component_source(
-               bt_self_component_source *self_component)
+               bt_self_component_source *self_component) __BT_NOEXCEPT
 {
        return __BT_UPCAST_CONST(bt_component_source, self_component);
 }
@@ -767,7 +759,7 @@ bt_self_component_source_as_component_source(
 static inline
 const bt_component_filter *
 bt_self_component_filter_as_component_filter(
-               bt_self_component_filter *self_component)
+               bt_self_component_filter *self_component) __BT_NOEXCEPT
 {
        return __BT_UPCAST_CONST(bt_component_filter, self_component);
 }
@@ -791,7 +783,7 @@ bt_self_component_filter_as_component_filter(
 static inline
 const bt_component_sink *
 bt_self_component_sink_as_component_sink(
-               bt_self_component_sink *self_component)
+               bt_self_component_sink *self_component) __BT_NOEXCEPT
 {
        return __BT_UPCAST_CONST(bt_component_sink, self_component);
 }
@@ -821,7 +813,7 @@ bt_self_component_sink_as_component_sink(
 */
 static inline
 bt_self_component *bt_self_component_source_as_self_component(
-               bt_self_component_source *self_component)
+               bt_self_component_source *self_component) __BT_NOEXCEPT
 {
        return __BT_UPCAST(bt_self_component, self_component);
 }
@@ -844,7 +836,7 @@ bt_self_component *bt_self_component_source_as_self_component(
 */
 static inline
 bt_self_component *bt_self_component_filter_as_self_component(
-               bt_self_component_filter *self_component)
+               bt_self_component_filter *self_component) __BT_NOEXCEPT
 {
        return __BT_UPCAST(bt_self_component, self_component);
 }
@@ -867,7 +859,7 @@ bt_self_component *bt_self_component_filter_as_self_component(
 */
 static inline
 bt_self_component *bt_self_component_sink_as_self_component(
-               bt_self_component_sink *self_component)
+               bt_self_component_sink *self_component) __BT_NOEXCEPT
 {
        return __BT_UPCAST(bt_self_component, self_component);
 }
This page took 0.027625 seconds and 4 git commands to generate.