summaryrefslogtreecommitdiff
path: root/gr-wavelet/lib/squash_ff_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'gr-wavelet/lib/squash_ff_impl.h')
-rw-r--r--gr-wavelet/lib/squash_ff_impl.h41
1 files changed, 20 insertions, 21 deletions
diff --git a/gr-wavelet/lib/squash_ff_impl.h b/gr-wavelet/lib/squash_ff_impl.h
index 933ee5288c..4a0b09f541 100644
--- a/gr-wavelet/lib/squash_ff_impl.h
+++ b/gr-wavelet/lib/squash_ff_impl.h
@@ -20,8 +20,8 @@
* Boston, MA 02110-1301, USA.
*/
-#ifndef INCLUDED_WAVELET_SQUASH_FF_IMPL_H
-#define INCLUDED_WAVELET_SQUASH_FF_IMPL_H
+#ifndef INCLUDED_WAVELET_SQUASH_FF_IMPL_H
+#define INCLUDED_WAVELET_SQUASH_FF_IMPL_H
#include <gnuradio/wavelet/api.h>
#include <gnuradio/wavelet/squash_ff.h>
@@ -30,31 +30,30 @@
#include <gsl/gsl_spline.h>
namespace gr {
- namespace wavelet {
+namespace wavelet {
- class WAVELET_API squash_ff_impl : public squash_ff
- {
- size_t d_inum;
- size_t d_onum;
- double *d_igrid;
- double *d_iwork;
- double *d_ogrid;
+class WAVELET_API squash_ff_impl : public squash_ff
+{
+ size_t d_inum;
+ size_t d_onum;
+ double* d_igrid;
+ double* d_iwork;
+ double* d_ogrid;
- gsl_interp_accel *d_accel;
- gsl_spline *d_spline;
+ gsl_interp_accel* d_accel;
+ gsl_spline* d_spline;
- public:
- squash_ff_impl(const std::vector<float> &igrid,
- const std::vector<float> &ogrid);
+public:
+ squash_ff_impl(const std::vector<float>& igrid, const std::vector<float>& ogrid);
- ~squash_ff_impl();
+ ~squash_ff_impl();
- int work(int noutput_items,
- gr_vector_const_void_star &input_items,
- gr_vector_void_star &output_items);
- };
+ int work(int noutput_items,
+ gr_vector_const_void_star& input_items,
+ gr_vector_void_star& output_items);
+};
- } /* namespace wavelet */
+} /* namespace wavelet */
} /* namespace gr */
#endif /* INCLUDED_WAVELET_WAVELET_FF_IMPL_H */