summaryrefslogtreecommitdiff
path: root/gr-wavelet
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2012-09-07 12:54:07 -0700
committerJosh Blum <josh@joshknows.com>2012-09-07 12:54:07 -0700
commitee3d98e85a2886f20457c1842a4d2dee9c89c42a (patch)
tree8a05233d7e8de567683b1c72efa450db4b2a0fe0 /gr-wavelet
parenteb738d1b6b4887bc475d83156985c25ba679b995 (diff)
wavelet: fix API export declarations
Diffstat (limited to 'gr-wavelet')
-rw-r--r--gr-wavelet/include/wavelet/squash_ff.h2
-rw-r--r--gr-wavelet/include/wavelet/wavelet_ff.h2
-rw-r--r--gr-wavelet/include/wavelet/wvps_ff.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/gr-wavelet/include/wavelet/squash_ff.h b/gr-wavelet/include/wavelet/squash_ff.h
index 4d1aeb3c3c..f546148581 100644
--- a/gr-wavelet/include/wavelet/squash_ff.h
+++ b/gr-wavelet/include/wavelet/squash_ff.h
@@ -41,7 +41,7 @@ namespace gr {
* spectral points, using gsl interpolation
* \ingroup misc
*/
- static WAVELET_API sptr make(const std::vector<float> &igrid,
+ static sptr make(const std::vector<float> &igrid,
const std::vector<float> &ogrid);
};
diff --git a/gr-wavelet/include/wavelet/wavelet_ff.h b/gr-wavelet/include/wavelet/wavelet_ff.h
index 71e959f88a..67bb6b19f8 100644
--- a/gr-wavelet/include/wavelet/wavelet_ff.h
+++ b/gr-wavelet/include/wavelet/wavelet_ff.h
@@ -40,7 +40,7 @@ namespace gr {
* \brief compute wavelet transform using gsl routines
* \ingroup wavelet_blk
*/
- static WAVELET_API sptr make(int size = 1024,
+ static sptr make(int size = 1024,
int order = 20,
bool forward = true);
};
diff --git a/gr-wavelet/include/wavelet/wvps_ff.h b/gr-wavelet/include/wavelet/wvps_ff.h
index 8b955db65f..7f1965a6e7 100644
--- a/gr-wavelet/include/wavelet/wvps_ff.h
+++ b/gr-wavelet/include/wavelet/wvps_ff.h
@@ -42,7 +42,7 @@ namespace gr {
* \brief computes the Wavelet Power Spectrum from a set of wavelet coefficients
* \ingroup wavelet_blk
*/
- static WAVELET_API sptr make(int ilen);
+ static sptr make(int ilen);
};
} /* namespace wavelet */