diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2012-12-07 10:52:22 -0800 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2012-12-07 10:52:22 -0800 |
commit | 1e6824a11f652697cf7904d7f40567e8c0870caf (patch) | |
tree | b6ec87c546ef6c5c6f4b7856bfccb6041ea24a5b /gnuradio-core/src | |
parent | ddb6ada4dbd0fa8db97ba6f2f4d2d8cb4149c8f1 (diff) |
core: fix missing gr_basic_block variable after merge fixup
Diffstat (limited to 'gnuradio-core/src')
-rw-r--r-- | gnuradio-core/src/lib/runtime/gr_basic_block.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnuradio-core/src/lib/runtime/gr_basic_block.h b/gnuradio-core/src/lib/runtime/gr_basic_block.h index b2d301c434..40f08489a9 100644 --- a/gnuradio-core/src/lib/runtime/gr_basic_block.h +++ b/gnuradio-core/src/lib/runtime/gr_basic_block.h @@ -97,7 +97,9 @@ class GR_CORE_API gr_basic_block : public gr_msg_accepter, public boost::enable_ std::string d_symbol_name; std::string d_symbol_alias; vcolor d_color; + msg_queue_map_t msg_queue; + std::vector<boost::any> d_rpc_vars; // container for all RPC variables gr_basic_block(void){} //allows pure virtual interface sub-classes |