summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJosh Blum2012-10-04 20:20:26 -0700
committerJosh Blum2012-10-04 20:20:26 -0700
commitc74b464015541a5b3d8efd3551231431562f32cb (patch)
tree445dfcc267ae8910243ef1e06f740e43c8d6b161 /include
parent12170824b70fa127fe8ed0ac1b81c627c06bd851 (diff)
downloadsandhi-c74b464015541a5b3d8efd3551231431562f32cb.tar.gz
sandhi-c74b464015541a5b3d8efd3551231431562f32cb.tar.bz2
sandhi-c74b464015541a5b3d8efd3551231431562f32cb.zip
swig issues worked out, Work can be work again
Diffstat (limited to 'include')
-rw-r--r--include/gnuradio/block.hpp2
-rw-r--r--include/gnuradio/gr_block.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/gnuradio/block.hpp b/include/gnuradio/block.hpp
index d06c49c..5796dc2 100644
--- a/include/gnuradio/block.hpp
+++ b/include/gnuradio/block.hpp
@@ -235,7 +235,7 @@ struct GRAS_API Block : Element
typedef std::vector<WorkBuffer<void *> > OutputItems;
//! The official call into the work routine (overload please)
- virtual int Work(
+ virtual int work(
const InputItems &input_items,
const OutputItems &output_items
) = 0;
diff --git a/include/gnuradio/gr_block.h b/include/gnuradio/gr_block.h
index 317c207..e60d231 100644
--- a/include/gnuradio/gr_block.h
+++ b/include/gnuradio/gr_block.h
@@ -51,7 +51,7 @@ struct GRAS_API gr_block : gnuradio::Block
template <typename T> void set_msg_handler(T msg_handler){/*LOL*/}
//! implements work -> calls general work
- int Work(
+ int work(
const InputItems &input_items,
const OutputItems &output_items
);