diff options
Diffstat (limited to 'gnuradio-runtime/lib/flat_flowgraph.h')
-rw-r--r-- | gnuradio-runtime/lib/flat_flowgraph.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gnuradio-runtime/lib/flat_flowgraph.h b/gnuradio-runtime/lib/flat_flowgraph.h index d0b3a3ae64..5db38b9dae 100644 --- a/gnuradio-runtime/lib/flat_flowgraph.h +++ b/gnuradio-runtime/lib/flat_flowgraph.h @@ -66,10 +66,22 @@ namespace gr { */ static block_vector_t make_block_vector(basic_block_vector_t &blocks); + /*! + * replace hierarchical message connections with internal primitive ones + */ void replace_endpoint(const msg_endpoint &e, const msg_endpoint &r, bool is_src); + + /*! + * remove a specific hier message connection after replacement + */ void clear_endpoint(const msg_endpoint &e, bool is_src); /*! + * remove remainin hier message connections (non primitive) + */ + void clear_hier(); + + /*! * Enables export of perf. counters to ControlPort on all blocks in * the flowgraph. */ |