summaryrefslogtreecommitdiff
path: root/gtk2_ardour/fft.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-03-03 17:58:11 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-03-03 17:58:11 +0000
commit80c46cc451fed4b50bd1e974b4586fcea99c1ab5 (patch)
tree804c1787bdca9b87a950b0d924abf284c67c6157 /gtk2_ardour/fft.h
parent1ba667a0c176c6560bc8d61c8b11e66493920c70 (diff)
put sampo's FFT into the (new) GTKArdour namespace, to avoid collision with the FFT in the QM DSP library. they should both be namespaced but its easier to avoid changing the QM code at all
git-svn-id: svn://localhost/ardour2/branches/3.0@9056 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/fft.h')
-rw-r--r--gtk2_ardour/fft.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/gtk2_ardour/fft.h b/gtk2_ardour/fft.h
index ba191c03cd..6022f1c770 100644
--- a/gtk2_ardour/fft.h
+++ b/gtk2_ardour/fft.h
@@ -32,6 +32,8 @@
#include "ardour/types.h"
+namespace GTKArdour {
+
class FFT
{
public:
@@ -72,4 +74,6 @@ class FFT
fftwf_plan _plan;
};
+}
+
#endif