diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2012-11-10 22:09:44 -0800 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2012-11-10 22:09:44 -0800 |
commit | ea539a77938c81bb046a6d83f3cf3f40eaa33c49 (patch) | |
tree | 82693131e1a69c46d41da689fc29d3802ab6e0a2 /gr-channels/lib/channel_model_impl.h | |
parent | fd380cb2e0bfa999ecc053ab32916c7380e70ebb (diff) |
channels: switch to using gr-blocks
Diffstat (limited to 'gr-channels/lib/channel_model_impl.h')
-rw-r--r-- | gr-channels/lib/channel_model_impl.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gr-channels/lib/channel_model_impl.h b/gr-channels/lib/channel_model_impl.h index 9c36f6369e..03408dad64 100644 --- a/gr-channels/lib/channel_model_impl.h +++ b/gr-channels/lib/channel_model_impl.h @@ -24,8 +24,8 @@ #define INCLUDED_CHANNELS_CHANNEL_MODEL_IMPL_H #include <gr_top_block.h> -#include <gr_add_cc.h> -#include <gr_multiply_cc.h> +#include <blocks/add_cc.h> +#include <blocks/multiply_cc.h> #include <analog/sig_source_c.h> #include <analog/noise_source_c.h> #include <channels/channel_model.h> @@ -38,8 +38,8 @@ namespace gr { class CHANNELS_API channel_model_impl : public channel_model { private: - gr_add_cc_sptr d_noise_adder; - gr_multiply_cc_sptr d_mixer_offset; + blocks::add_cc::sptr d_noise_adder; + blocks::multiply_cc::sptr d_mixer_offset; analog::sig_source_c::sptr d_freq_offset; analog::noise_source_c::sptr d_noise; |