58 lines
1.6 KiB
C
Raw Normal View History

2021-10-09 15:16:34 -05:00
/*****************************************************************************
FFTRealSelect.h
By Laurent de Soras
--- Legal stuff ---
This program is free software. It comes without any warranty, to
the extent permitted by applicable law. You can redistribute it
and/or modify it under the terms of the Do What The Fuck You Want
To Public License, Version 2, as published by Sam Hocevar. See
http://sam.zoy.org/wtfpl/COPYING for more details.
*Tab=3***********************************************************************/
#if !defined(ffft_FFTRealSelect_HEADER_INCLUDED)
# define ffft_FFTRealSelect_HEADER_INCLUDED
2021-10-09 15:16:34 -05:00
# if defined(_MSC_VER)
# pragma once
# endif
2021-10-09 15:16:34 -05:00
/*\\\ INCLUDE FILES \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
# include "def.h"
2021-10-09 15:16:34 -05:00
namespace ffft
{
template<int P>
2021-10-09 15:16:34 -05:00
class FFTRealSelect
{
/*\\\ PUBLIC \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
2021-10-09 15:16:34 -05:00
public:
ffft_FORCEINLINE static float *sel_bin(float *e_ptr, float *o_ptr);
2021-10-09 15:16:34 -05:00
/*\\\ FORBIDDEN MEMBER FUNCTIONS \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
2021-10-09 15:16:34 -05:00
private:
FFTRealSelect();
~FFTRealSelect();
FFTRealSelect(const FFTRealSelect &other);
FFTRealSelect &operator=(const FFTRealSelect &other);
bool operator==(const FFTRealSelect &other);
bool operator!=(const FFTRealSelect &other);
2021-10-09 15:16:34 -05:00
}; // class FFTRealSelect
2021-10-09 15:16:34 -05:00
} // namespace ffft
2021-10-09 15:16:34 -05:00
# include "FFTRealSelect.hpp"
2021-10-09 15:16:34 -05:00
#endif // ffft_FFTRealSelect_HEADER_INCLUDED
2021-10-09 15:16:34 -05:00
/*\\\ EOF \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/