diff options
author | Josh Blum <josh@joshknows.com> | 2011-07-23 11:29:00 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-07-23 11:29:00 -0700 |
commit | 3017c8ea2981709c927c782faed302c05f0d6ac2 (patch) | |
tree | 885f68d9a3fe44a349d58af581f3de1ecedd3909 /gr-vocoder/include/vocoder_g721_decode_bs.h | |
parent | 1904b3817207810031b95efca0fd59406a7fe661 (diff) |
vocoder: updated cmake build for new blocks (also fixed some tests)
Diffstat (limited to 'gr-vocoder/include/vocoder_g721_decode_bs.h')
-rw-r--r-- | gr-vocoder/include/vocoder_g721_decode_bs.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gr-vocoder/include/vocoder_g721_decode_bs.h b/gr-vocoder/include/vocoder_g721_decode_bs.h index 8ce3b12e55..1ac7b993a4 100644 --- a/gr-vocoder/include/vocoder_g721_decode_bs.h +++ b/gr-vocoder/include/vocoder_g721_decode_bs.h @@ -23,13 +23,14 @@ #ifndef INCLUDED_VOCODER_G721_DECODE_BS_H #define INCLUDED_VOCODER_G721_DECODE_BS_H +#include <vocoder_api.h> #include <gr_sync_block.h> class vocoder_g721_decode_bs; typedef boost::shared_ptr<vocoder_g721_decode_bs> vocoder_g721_decode_bs_sptr; -vocoder_g721_decode_bs_sptr vocoder_make_g721_decode_bs(); +VOCODER_API vocoder_g721_decode_bs_sptr vocoder_make_g721_decode_bs(); /*! * \brief This block performs g721 audio decoding. @@ -37,7 +38,7 @@ vocoder_g721_decode_bs_sptr vocoder_make_g721_decode_bs(); * \ingroup vocoder_blk */ -class vocoder_g721_decode_bs : virtual public gr_sync_block +class VOCODER_API vocoder_g721_decode_bs : virtual public gr_sync_block { }; |