diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2015-12-08 11:32:31 -0800 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2015-12-08 11:32:31 -0800 |
commit | cf40d7d12157e558c5bda77d3ce51e13db44f296 (patch) | |
tree | cea0d163b1d3b5ff35efce504cf557f1f500b244 /gnuradio-runtime/lib/flat_flowgraph.h | |
parent | 8bc9c4201448686878d572cc564102aa00d1f007 (diff) | |
parent | a463feccf7e6c3687b3588a5c6be5f8854c2de1e (diff) |
Merge branch 'master' into next
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. */ |