GNU Radio C++ API Reference 3.10.12.0
The Free & Open Software Radio Ecosystem
 
Loading...
Searching...
No Matches
wvps_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_WVPS_FF_H
12#define INCLUDED_WAVELET_WVPS_FF_H
13
16
17class wavelet_wvps_ff;
18
19namespace gr {
20namespace wavelet {
21
22/*!
23 * \brief computes the Wavelet Power Spectrum from a set of wavelet coefficients
24 * \ingroup wavelet_blk
25 */
26class WAVELET_API wvps_ff : virtual public sync_block
27{
28public:
29 // gr::wavelet::wvps_ff::sptr
30 typedef std::shared_ptr<wvps_ff> sptr;
31
32 /*!
33 \param ilen
34 */
35 static sptr make(int ilen);
36};
37
38} /* namespace wavelet */
39} /* namespace gr */
40
41#endif /* INCLUDED_WAVELET_WVPS_FF_H */
synchronous 1:1 input to output with history
Definition sync_block.h:26
computes the Wavelet Power Spectrum from a set of wavelet coefficients
Definition wvps_ff.h:27
static sptr make(int ilen)
std::shared_ptr< wvps_ff > sptr
Definition wvps_ff.h:30
#define WAVELET_API
Definition gr-wavelet/include/gnuradio/wavelet/api.h:18
GNU Radio logging wrapper.
Definition basic_block.h:29