HephAudio v3.0.6
A cross-platform C++ library for recording, playing, and processing audio on Windows, Android, Linux, iOS, and macOS.
Loading...
Searching...
No Matches
RectangularWindow.h
Go to the documentation of this file.
1#pragma once
2#include "HephAudioShared.h"
3#include "Window.h"
4
7namespace HephAudio
8{
13 class HEPH_API RectangularWindow final : public Window
14 {
15 public:
18
20 RectangularWindow(size_t size);
21
22 double operator[](size_t n) const override;
23 };
24}
#define HEPH_API
Definition HephShared.h:132
generates rectangular window
Definition RectangularWindow.h:14
double operator[](size_t n) const override
base class for windows.
Definition Window.h:14