FFTRealUseTrigo.h Example File
multimedia/spectrum/3rdparty/fftreal/FFTRealUseTrigo.h
#if ! defined (FFTRealUseTrigo_HEADER_INCLUDED)
#define FFTRealUseTrigo_HEADER_INCLUDED
#if defined (_MSC_VER)
#pragma once
#pragma warning (4 : 4250) // "Inherits via dominance."
#endif
#include "def.h"
#include "FFTRealFixLenParam.h"
#include "OscSinCos.h"
template <int ALGO>
class FFTRealUseTrigo
{
public:
typedef FFTRealFixLenParam::DataType DataType;
typedef OscSinCos <DataType> OscType;
FORCEINLINE static void
prepare (OscType &osc);
FORCEINLINE static void
iterate (OscType &osc, DataType &c, DataType &s, const DataType cos_ptr [], long index_c, long index_s);
protected:
private:
private:
FFTRealUseTrigo ();
~FFTRealUseTrigo ();
FFTRealUseTrigo (const FFTRealUseTrigo &other);
FFTRealUseTrigo &
operator = (const FFTRealUseTrigo &other);
bool operator == (const FFTRealUseTrigo &other);
bool operator != (const FFTRealUseTrigo &other);
};
#include "FFTRealUseTrigo.hpp"
#endif // FFTRealUseTrigo_HEADER_INCLUDED