lib: add aliases for Babeltrace structure types
[babeltrace.git] / include / babeltrace / graph / self-component-port-output.h
index eaf5d9125c28602738a1405c9306284bd02e1e95..6fd4b138fb88b48ba5c796573d1e462b10087c6c 100644 (file)
@@ -2,7 +2,7 @@
 #define BABELTRACE_GRAPH_SELF_COMPONENT_PORT_OUTPUT_H
 
 /*
- * Copyright 2017 Philippe Proulx <pproulx@efficios.com>
+ * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
  *
  * Permission is hereby granted, free of charge, to any person obtaining a copy
  * of this software and associated documentation files (the "Software"), to deal
 /* For enum bt_self_component_port_status */
 #include <babeltrace/graph/self-component-port.h>
 
+/*
+ * For bt_port_output, bt_self_component_port,
+ * bt_self_component_port_output
+ */
+#include <babeltrace/types.h>
+
 #ifdef __cplusplus
 extern "C" {
 #endif
 
-struct bt_port_output;
-struct bt_self_component_port;
-struct bt_self_component_port_output;
-
 static inline
-struct bt_self_component_port *
-bt_self_component_port_output_borrow_self_component_port(
-               struct bt_self_component_port_output *self_component_port)
+bt_self_component_port *
+bt_self_component_port_output_as_self_component_port(
+               bt_self_component_port_output *self_component_port)
 {
        return (void *) self_component_port;
 }
 
 static inline
-struct bt_port_output *bt_self_component_port_output_borrow_port_output(
-               struct bt_self_component_port_output *self_component_port)
+const bt_port_output *bt_self_component_port_output_as_port_output(
+               bt_self_component_port_output *self_component_port)
 {
-       return (void *) self_component_port;
+       return (const void *) self_component_port;
 }
 
 #ifdef __cplusplus
This page took 0.027902 seconds and 4 git commands to generate.