FFTRealFixLenParam.h Example File
multimedia/spectrum/3rdparty/fftreal/FFTRealFixLenParam.h
#if ! defined (FFTRealFixLenParam_HEADER_INCLUDED)
#define FFTRealFixLenParam_HEADER_INCLUDED
#if defined (_MSC_VER)
#pragma once
#pragma warning (4 : 4250) // "Inherits via dominance."
#endif
class FFTRealFixLenParam
{
public:
enum { TRIGO_BD_LIMIT = 12 };
typedef float DataType;
protected:
private:
private:
#if 0 // To avoid GCC warning:
FFTRealFixLenParam ();
~FFTRealFixLenParam ();
FFTRealFixLenParam (const FFTRealFixLenParam &other);
FFTRealFixLenParam &
operator = (const FFTRealFixLenParam &other);
bool operator == (const FFTRealFixLenParam &other);
bool operator != (const FFTRealFixLenParam &other);
#endif
};
#endif // FFTRealFixLenParam_HEADER_INCLUDED