summaryrefslogtreecommitdiff
path: root/lib/top_block.cpp
diff options
context:
space:
mode:
authorJosh Blum2012-08-19 14:27:11 -0700
committerJosh Blum2012-08-26 16:03:51 -0700
commitfa25d15ed1a7b85869229055ef32166ef1d8bef2 (patch)
tree0f39ab553dce30e9c8c11ab20f820d5753d5bf47 /lib/top_block.cpp
parent87be8242fd5855a8e8f6a76fddf40275b711c784 (diff)
downloadsandhi-fa25d15ed1a7b85869229055ef32166ef1d8bef2.tar.gz
sandhi-fa25d15ed1a7b85869229055ef32166ef1d8bef2.tar.bz2
sandhi-fa25d15ed1a7b85869229055ef32166ef1d8bef2.zip
runtime: work on unit tests
Diffstat (limited to 'lib/top_block.cpp')
-rw-r--r--lib/top_block.cpp50
1 files changed, 50 insertions, 0 deletions
diff --git a/lib/top_block.cpp b/lib/top_block.cpp
new file mode 100644
index 0000000..268064e
--- /dev/null
+++ b/lib/top_block.cpp
@@ -0,0 +1,50 @@
+//
+// 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 io_sig program. If not, see <http://www.gnu.org/licenses/>.
+
+#include <gnuradio/top_block.hpp>
+
+using namespace gnuradio;
+
+TopBlock::TopBlock(void)
+{
+ //NOP
+}
+
+TopBlock::TopBlock(const std::string &name):
+ HierBlock(name)
+{
+ //TODO
+}
+
+void TopBlock::update(void)
+{
+
+}
+
+void TopBlock::start(void)
+{
+
+}
+
+void TopBlock::stop(void)
+{
+
+}
+
+void TopBlock::wait(void)
+{
+
+}