From c74b464015541a5b3d8efd3551231431562f32cb Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Thu, 4 Oct 2012 20:20:26 -0700 Subject: swig issues worked out, Work can be work again --- include/gnuradio/block.hpp | 2 +- include/gnuradio/gr_block.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'include') 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 > 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 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 ); -- cgit