~ubuntu-branches/ubuntu/trusty/gnuradio/trusty-updates

« back to all changes in this revision

Viewing changes to gnuradio-core/src/lib/filter/gr_adaptive_fir_ccf.h

  • Committer: Package Import Robot
  • Author(s): A. Maitland Bottoms
  • Date: 2012-02-26 21:26:16 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20120226212616-vsfkbi1158xshdql
Tags: 3.5.1-1
* new upstream version, re-packaged from scratch with modern tools
    closes: #642716, #645332, #394849, #616832, #590048, #642580,
    #647018, #557050, #559640, #631863
* CMake build

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#ifndef INCLUDED_GR_ADAPTIVE_FIR_CCF_H
24
24
#define INCLUDED_GR_ADAPTIVE_FIR_CCF_H
25
25
 
 
26
#include <gr_core_api.h>
26
27
#include <gr_sync_decimator.h>
27
28
 
28
29
/*!
29
30
 * \brief Adaptive FIR filter with gr_complex input, gr_complex output and float taps
30
31
 * \ingroup filter_blk
31
32
 */
32
 
class gr_adaptive_fir_ccf : public gr_sync_decimator
 
33
class GR_CORE_API gr_adaptive_fir_ccf : public gr_sync_decimator
33
34
{
34
35
private:
35
36
  std::vector<float>  d_new_taps;