diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2013-04-30 13:27:01 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2013-04-30 13:27:01 -0700 |
commit | b71a82c366ad2bced0af3ae7a68d2c274c3ae3da (patch) | |
tree | 2053bf7e3a1f847bb31a0114ee89034a68d57b8a /gr-wavelet/include/wavelet | |
parent | c6acabb7df67983a3a4ebd4a34a7655a431bdeb7 (diff) |
wavelet: moved include dir to gnuradio/wavelet
Diffstat (limited to 'gr-wavelet/include/wavelet')
-rw-r--r-- | gr-wavelet/include/wavelet/CMakeLists.txt | 31 | ||||
-rw-r--r-- | gr-wavelet/include/wavelet/api.h | 33 | ||||
-rw-r--r-- | gr-wavelet/include/wavelet/squash_ff.h | 51 | ||||
-rw-r--r-- | gr-wavelet/include/wavelet/wavelet_ff.h | 51 | ||||
-rw-r--r-- | gr-wavelet/include/wavelet/wvps_ff.h | 51 |
5 files changed, 0 insertions, 217 deletions
diff --git a/gr-wavelet/include/wavelet/CMakeLists.txt b/gr-wavelet/include/wavelet/CMakeLists.txt deleted file mode 100644 index 43c1603d15..0000000000 --- a/gr-wavelet/include/wavelet/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 2012 Free Software Foundation, Inc. -# -# This file is part of GNU Radio -# -# GNU Radio is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3, or (at your option) -# any later version. -# -# GNU Radio is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with GNU Radio; see the file COPYING. If not, write to -# the Free Software Foundation, Inc., 51 Franklin Street, -# Boston, MA 02110-1301, USA. - -######################################################################## -# Install header files -######################################################################## -install(FILES - api.h - squash_ff.h - wavelet_ff.h - wvps_ff.h - DESTINATION ${GR_INCLUDE_DIR}/gnuradio/wavelet - COMPONENT "wavelet_devel" -) - diff --git a/gr-wavelet/include/wavelet/api.h b/gr-wavelet/include/wavelet/api.h deleted file mode 100644 index 371ac24d54..0000000000 --- a/gr-wavelet/include/wavelet/api.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright 2012 Free Software Foundation, Inc. - * - * This file is part of GNU Radio - * - * GNU Radio is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 3, or (at your option) - * any later version. - * - * GNU Radio is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with GNU Radio; see the file COPYING. If not, write to - * the Free Software Foundation, Inc., 51 Franklin Street, - * Boston, MA 02110-1301, USA. - */ - -#ifndef INCLUDED_WAVELET_API_H -#define INCLUDED_WAVELET_API_H - -#include <gnuradio/attributes.h> - -#ifdef gnuradio_wavelet_EXPORTS -# define WAVELET_API __GR_ATTR_EXPORT -#else -# define WAVELET_API __GR_ATTR_IMPORT -#endif - -#endif /* INCLUDED_WAVELET_API_H */ diff --git a/gr-wavelet/include/wavelet/squash_ff.h b/gr-wavelet/include/wavelet/squash_ff.h deleted file mode 100644 index 1635829a6c..0000000000 --- a/gr-wavelet/include/wavelet/squash_ff.h +++ /dev/null @@ -1,51 +0,0 @@ -/* -*- c++ -*- */ -/* - * Copyright 2008,2012 Free Software Foundation, Inc. - * - * This file is part of GNU Radio - * - * GNU Radio is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 3, or (at your option) - * any later version. - * - * GNU Radio is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with GNU Radio; see the file COPYING. If not, write to - * the Free Software Foundation, Inc., 51 Franklin Street, - * Boston, MA 02110-1301, USA. - */ - -#ifndef INCLUDED_WAVELET_SQUASH_FF_H -#define INCLUDED_WAVELET_SQUASH_FF_H - -#include <wavelet/api.h> -#include <gnuradio/sync_block.h> - -namespace gr { - namespace wavelet { - - class WAVELET_API squash_ff : virtual public sync_block - { - public: - - // gr::wavelet::squash_ff::sptr - typedef boost::shared_ptr<squash_ff> sptr; - - /*! - * \brief implements cheap resampling of spectrum directly from - * spectral points, using gsl interpolation - * \ingroup misc - */ - static sptr make(const std::vector<float> &igrid, - const std::vector<float> &ogrid); - }; - - } /* namespace wavelet */ -} /* namespace gr */ - -#endif diff --git a/gr-wavelet/include/wavelet/wavelet_ff.h b/gr-wavelet/include/wavelet/wavelet_ff.h deleted file mode 100644 index 1cae092e46..0000000000 --- a/gr-wavelet/include/wavelet/wavelet_ff.h +++ /dev/null @@ -1,51 +0,0 @@ -/* -*- c++ -*- */ -/* - * Copyright 2008,2012 Free Software Foundation, Inc. - * - * This file is part of GNU Radio - * - * GNU Radio is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 3, or (at your option) - * any later version. - * - * GNU Radio is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with GNU Radio; see the file COPYING. If not, write to - * the Free Software Foundation, Inc., 51 Franklin Street, - * Boston, MA 02110-1301, USA. - */ - -#ifndef INCLUDED_WAVELET_WAVELET_FF_H -#define INCLUDED_WAVELET_WAVELET_FF_H - -#include <wavelet/api.h> -#include <gnuradio/sync_block.h> - -namespace gr { - namespace wavelet { - - class WAVELET_API wavelet_ff : virtual public sync_block - { - public: - - // gr::wavelet::wavelet_ff:sptr - typedef boost::shared_ptr<wavelet_ff> sptr; - - /*! - * \brief compute wavelet transform using gsl routines - * \ingroup wavelet_blk - */ - static sptr make(int size = 1024, - int order = 20, - bool forward = true); - }; - - } /* namespace wavelet */ -} /* namespace gr */ - -#endif /* INCLUDED_WAVELET_WAVELET_FF_H */ diff --git a/gr-wavelet/include/wavelet/wvps_ff.h b/gr-wavelet/include/wavelet/wvps_ff.h deleted file mode 100644 index 6a799b0bbb..0000000000 --- a/gr-wavelet/include/wavelet/wvps_ff.h +++ /dev/null @@ -1,51 +0,0 @@ -/* -*- c++ -*- */ -/* - * Copyright 2008,2012 Free Software Foundation, Inc. - * - * This file is part of GNU Radio - * - * GNU Radio is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 3, or (at your option) - * any later version. - * - * GNU Radio is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with GNU Radio; see the file COPYING. If not, write to - * the Free Software Foundation, Inc., 51 Franklin Street, - * Boston, MA 02110-1301, USA. - */ - -#ifndef INCLUDED_WAVELET_WVPS_FF_H -#define INCLUDED_WAVELET_WVPS_FF_H - -#include <wavelet/api.h> -#include <gnuradio/sync_decimator.h> - -class wavelet_wvps_ff; - -namespace gr { - namespace wavelet { - - class WAVELET_API wvps_ff : virtual public sync_block - { - public: - - // gr::wavelet::wvps_ff::sptr - typedef boost::shared_ptr<wvps_ff> sptr; - - /*! - * \brief computes the Wavelet Power Spectrum from a set of wavelet coefficients - * \ingroup wavelet_blk - */ - static sptr make(int ilen); - }; - - } /* namespace wavelet */ -} /* namespace gr */ - -#endif /* INCLUDED_WAVELET_WVPS_FF_H */ |