diff options
author | Josh Blum <josh@joshknows.com> | 2011-07-22 10:33:13 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-07-22 10:33:13 -0700 |
commit | ec2d3a033616386dbf8f8b2e7010a4d0a5ec3132 (patch) | |
tree | 0aafe7f48bd6552cda48dd726b20ef70c305e3f9 /gr-vocoder/include/vocoder_alaw_decode_bs.h | |
parent | d760edf9fb851d97c972a69690b26114dd998157 (diff) |
gr: added API macros for noaa and pager, also renamed the ones for digital and vocoder to be consistent
Diffstat (limited to 'gr-vocoder/include/vocoder_alaw_decode_bs.h')
-rw-r--r-- | gr-vocoder/include/vocoder_alaw_decode_bs.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gr-vocoder/include/vocoder_alaw_decode_bs.h b/gr-vocoder/include/vocoder_alaw_decode_bs.h index 250b4eb4ff..f20dfefdb0 100644 --- a/gr-vocoder/include/vocoder_alaw_decode_bs.h +++ b/gr-vocoder/include/vocoder_alaw_decode_bs.h @@ -23,14 +23,14 @@ #ifndef INCLUDED_VOCODER_ALAW_DECODE_BS_H #define INCLUDED_VOCODER_ALAW_DECODE_BS_H -#include <gr_vocoder_api.h> +#include <vocoder_api.h> #include <gr_sync_block.h> class vocoder_alaw_decode_bs; typedef boost::shared_ptr<vocoder_alaw_decode_bs> vocoder_alaw_decode_bs_sptr; -GR_VOCODER_API vocoder_alaw_decode_bs_sptr vocoder_make_alaw_decode_bs(); +VOCODER_API vocoder_alaw_decode_bs_sptr vocoder_make_alaw_decode_bs(); /*! * \brief This block performs alaw audio decoding. @@ -38,10 +38,10 @@ GR_VOCODER_API vocoder_alaw_decode_bs_sptr vocoder_make_alaw_decode_bs(); * \ingroup vocoder_blk */ -class GR_VOCODER_API vocoder_alaw_decode_bs : public gr_sync_block +class VOCODER_API vocoder_alaw_decode_bs : public gr_sync_block { private: - friend GR_VOCODER_API vocoder_alaw_decode_bs_sptr vocoder_make_alaw_decode_bs(); + friend VOCODER_API vocoder_alaw_decode_bs_sptr vocoder_make_alaw_decode_bs(); vocoder_alaw_decode_bs(); |