api documentation for ec_parse
[protos/libecoli.git] / include / ecoli_node_bypass.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2019, Olivier MATZ <zer0@droids-corp.org>
3  */
4
5 /**
6  * @defgroup nodes Nodes
7  * @{
8  *
9  * A node that does nothing else than calling the child node.
10  * It can be helpful to build loops in a node graph.
11  */
12
13 #ifndef ECOLI_NODE_BYPASS_
14 #define ECOLI_NODE_BYPASS_
15
16 #include <ecoli_node.h>
17
18 struct ec_node *ec_node_bypass(const char *id, struct ec_node *node);
19 int ec_node_bypass_set_child(struct ec_node *gen_node, struct ec_node *child);
20
21 #endif
22
23 /** @} */