diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/gnuradio/block.hpp | 2 | ||||
-rw-r--r-- | include/gnuradio/gr_block.h | 2 |
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 ); |