blob: 8e60775ef30b89810b0905f92b5477b6f69f6db5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/**
* @file samples.hpp
* @brief Provides sample buffers for inputs and outputs.
*
* Copyright (C) 2023 Clyne Sullivan
*
* Distributed under the GNU GPL v3 or later. You should have received a copy of
* the GNU General Public License along with this program.
* If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef STMDSP_SAMPLES_HPP
#define STMDSP_SAMPLES_HPP
#include "samplebuffer.hpp"
// Define sample buffers for the input and output signals and the signal
// generator.
class Samples
{
public:
static SampleBuffer In;
static SampleBuffer Out;
static SampleBuffer Generator;
};
#endif // STMDSP_SAMPLES_HPP
|