diff options
author | eb | 2008-07-09 18:59:37 +0000 |
---|---|---|
committer | eb | 2008-07-09 18:59:37 +0000 |
commit | 395e1fa650428899dee0f123cb7bf432732280c5 (patch) | |
tree | d84e105db26cfcca921c7446f001b31aef042984 /gnuradio-core/src/lib/runtime/qa_runtime.cc | |
parent | 73a2e8ac45347d1c1a12518557fb641dff3233b5 (diff) | |
download | gnuradio-395e1fa650428899dee0f123cb7bf432732280c5.tar.gz gnuradio-395e1fa650428899dee0f123cb7bf432732280c5.tar.bz2 gnuradio-395e1fa650428899dee0f123cb7bf432732280c5.zip |
Merged jcorgan/ptrfix -r8827:8843 into the trunk.
Fix that allows C++ classes derived from gr_hier_block2 to
use the new self() method to get a magic object that can be passed
to connect or disconnect to refer to their own inputs and outputs.
Note that the constructor wrapper of all classes derived from
gr_hier_block2 (and thus gr_top_block too) MUST USE the new
gnuradio::get_initial_sptr function to get the initial shared pointer.
gnuradio::get_initial_sptr works on all block types, and should be
used in all new code. See qa_gr_hier_block2_derived.{h,cc} for an
example.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@8844 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gnuradio-core/src/lib/runtime/qa_runtime.cc')
-rw-r--r-- | gnuradio-core/src/lib/runtime/qa_runtime.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnuradio-core/src/lib/runtime/qa_runtime.cc b/gnuradio-core/src/lib/runtime/qa_runtime.cc index ba0f14b93..31e3a82d6 100644 --- a/gnuradio-core/src/lib/runtime/qa_runtime.cc +++ b/gnuradio-core/src/lib/runtime/qa_runtime.cc @@ -36,6 +36,7 @@ #include <qa_gr_flowgraph.h> #include <qa_gr_top_block.h> #include <qa_gr_hier_block2.h> +#include <qa_gr_hier_block2_derived.h> #include <qa_gr_buffer.h> CppUnit::TestSuite * @@ -49,6 +50,7 @@ qa_runtime::suite () s->addTest (qa_gr_flowgraph::suite ()); s->addTest (qa_gr_top_block::suite ()); s->addTest (qa_gr_hier_block2::suite ()); + s->addTest (qa_gr_hier_block2_derived::suite ()); s->addTest (qa_gr_buffer::suite ()); return s; |