diff options
author | Tom Rondeau <trondeau@vt.edu> | 2012-12-20 16:46:46 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2012-12-20 16:46:46 -0500 |
commit | c417edef7424691d32d835c778174ac3f1db7ad8 (patch) | |
tree | e1bf65fe5dfbe9039fcdded387c09f7e33f18fb6 /gr-qtgui/lib/time_sink_f_impl.cc | |
parent | e98b2874a7051f0341a229f357f1efe9f87caffa (diff) |
qtgui: added check_topology to check d_nconnections and actual connections.
Diffstat (limited to 'gr-qtgui/lib/time_sink_f_impl.cc')
-rw-r--r-- | gr-qtgui/lib/time_sink_f_impl.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gr-qtgui/lib/time_sink_f_impl.cc b/gr-qtgui/lib/time_sink_f_impl.cc index 562da3ef86..61705218ff 100644 --- a/gr-qtgui/lib/time_sink_f_impl.cc +++ b/gr-qtgui/lib/time_sink_f_impl.cc @@ -78,6 +78,12 @@ namespace gr { } } + bool + time_sink_f_impl::check_topology(int ninputs, int noutputs) + { + return ninputs == d_nconnections; + } + void time_sink_f_impl::initialize() { |