summaryrefslogtreecommitdiff
path: root/lib/block.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/block.cpp
parent9620afa87986645653b171fb2c74c06597edb382 (diff)
downloadsandhi-77f79c8e2c45d816a2ecb869b2869825b3293640.tar.gz
sandhi-77f79c8e2c45d816a2ecb869b2869825b3293640.tar.bz2
sandhi-77f79c8e2c45d816a2ecb869b2869825b3293640.zip
work on stand-alone library build
Diffstat (limited to 'lib/block.cpp')
-rw-r--r--lib/block.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/block.cpp b/lib/block.cpp
index 95d27fa..0d50ef7 100644
--- a/lib/block.cpp
+++ b/lib/block.cpp
@@ -15,9 +15,9 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "element_impl.hpp"
-#include <gnuradio/block.hpp>
+#include <gras/block.hpp>
-using namespace gnuradio;
+using namespace gras;
InputPortConfig::InputPortConfig(void)
{
@@ -136,7 +136,7 @@ bool Block::fixed_rate(void) const
void Block::set_output_multiple(const size_t multiple)
{
(*this)->block->output_multiple_items = multiple;
- gnuradio::OutputPortConfig config = this->output_config();
+ gras::OutputPortConfig config = this->output_config();
config.reserve_items = multiple;
this->set_output_config(config);
}