I am trying to move code from an AurioTouch project to my project. But I have a lot of errors:
Unknown type name 'class'; did you mean 'Class'?
For example, in the FFTBufferManager.h file:
#include <AudioToolbox/AudioToolbox.h> #include <libkern/OSAtomic.h> #include "SpectrumAnalysis.h" class FFTBufferManager { public: FFTBufferManager(UInt32 inNumberFrames); ~FFTBufferManager();
I tried changing the compiler to LLVM GCC 4.2, but it gives many other errors:
Expected '=', ',', ';', 'asm' or '__attribute__' before 'FFTBufferManager'
What am I doing wrong?
source share