mirror of
https://gitlab.com/then-try-this/samplebrain.git
synced 2025-05-12 02:27:21 +00:00
38 lines
759 B
C++
38 lines
759 B
C++
/**
|
|
* @file FlattopWindow.h
|
|
*
|
|
* Flat-top window.
|
|
*
|
|
* This file is part of the Aquila DSP library.
|
|
* Aquila is free software, licensed under the MIT/X11 License. A copy of
|
|
* the license is provided with the library in the LICENSE file.
|
|
*
|
|
* @package Aquila
|
|
* @version 3.0.0-dev
|
|
* @author Zbigniew Siciarz
|
|
* @date 2007-2014
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT
|
|
* @since 3.0.0
|
|
*/
|
|
|
|
#ifndef FLATTOPWINDOW_H
|
|
#define FLATTOPWINDOW_H
|
|
|
|
#include "../../global.h"
|
|
#include "../SignalSource.h"
|
|
#include <cstddef>
|
|
|
|
namespace Aquila
|
|
{
|
|
/**
|
|
* Flat-top window.
|
|
*/
|
|
class AQUILA_EXPORT FlattopWindow : public SignalSource
|
|
{
|
|
public:
|
|
FlattopWindow(std::size_t size);
|
|
};
|
|
}
|
|
|
|
#endif // FLATTOPWINDOW_H
|