summaryrefslogtreecommitdiff
path: root/lib/gr_hier_block2.cpp
diff options
context:
space:
mode:
authorJosh Blum2012-10-28 22:39:39 -0700
committerJosh Blum2012-10-28 22:39:39 -0700
commit77f79c8e2c45d816a2ecb869b2869825b3293640 (patch)
tree888dfa430241024e0dd47248aa14a8a09394d469 /lib/gr_hier_block2.cpp
parent9620afa87986645653b171fb2c74c06597edb382 (diff)
downloadsandhi-77f79c8e2c45d816a2ecb869b2869825b3293640.tar.gz
sandhi-77f79c8e2c45d816a2ecb869b2869825b3293640.tar.bz2
sandhi-77f79c8e2c45d816a2ecb869b2869825b3293640.zip
work on stand-alone library build
Diffstat (limited to 'lib/gr_hier_block2.cpp')
-rw-r--r--lib/gr_hier_block2.cpp41
1 files changed, 0 insertions, 41 deletions
diff --git a/lib/gr_hier_block2.cpp b/lib/gr_hier_block2.cpp
deleted file mode 100644
index b40755a..0000000
--- a/lib/gr_hier_block2.cpp
+++ /dev/null
@@ -1,41 +0,0 @@
-//
-// Copyright 2012 Josh Blum
-//
-// This program is free software: you can redistribute it and/or modify
-// it under the terms of the GNU Lesser General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
-//
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU Lesser General Public License for more details.
-//
-// You should have received a copy of the GNU Lesser General Public License
-// along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-#include <gr_hier_block2.h>
-
-gr_hier_block2::gr_hier_block2(void)
-{
- //NOP
-}
-
-gr_hier_block2::gr_hier_block2(
- const std::string &name,
- gr_io_signature_sptr input_signature,
- gr_io_signature_sptr output_signature
-):
- gnuradio::HierBlock(name)
-{
- this->set_input_signature(input_signature);
- this->set_output_signature(output_signature);
-}
-
-gr_hier_block2_sptr gr_make_hier_block2(
- const std::string &name,
- gr_io_signature_sptr input_signature,
- gr_io_signature_sptr output_signature
-){
- return gr_hier_block2_sptr(new gr_hier_block2(name, input_signature, output_signature));
-}