GNU Radio Manual and C++ API Reference  3.10.9.1
The Free & Open Software Radio Ecosystem
wavelet_ff.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2008,2012 Free Software Foundation, Inc.
4  *
5  * This file is part of GNU Radio
6  *
7  * SPDX-License-Identifier: GPL-3.0-or-later
8  *
9  */
10 
11 #ifndef INCLUDED_WAVELET_WAVELET_FF_H
12 #define INCLUDED_WAVELET_WAVELET_FF_H
13 
14 #include <gnuradio/sync_block.h>
15 #include <gnuradio/wavelet/api.h>
16 
17 namespace gr {
18 namespace wavelet {
19 
20 /*!
21  * \brief Compute wavelet transform using gsl routines.
22  * \ingroup wavelet_blk
23  */
24 class WAVELET_API wavelet_ff : virtual public sync_block
25 {
26 public:
27  // gr::wavelet::wavelet_ff:sptr
28  typedef std::shared_ptr<wavelet_ff> sptr;
29 
30  /*!
31  * \param size
32  * \param order
33  * \param forward
34  */
35  static sptr make(int size = 1024, int order = 20, bool forward = true);
36 };
37 
38 } /* namespace wavelet */
39 } /* namespace gr */
40 
41 #endif /* INCLUDED_WAVELET_WAVELET_FF_H */
synchronous 1:1 input to output with history
Definition: sync_block.h:26
Compute wavelet transform using gsl routines.
Definition: wavelet_ff.h:25
static sptr make(int size=1024, int order=20, bool forward=true)
std::shared_ptr< wavelet_ff > sptr
Definition: wavelet_ff.h:28
#define WAVELET_API
Definition: gr-wavelet/include/gnuradio/wavelet/api.h:18
GNU Radio logging wrapper.
Definition: basic_block.h:29