Loading [MathJax]/extensions/tex2jax.js
Yet Another Synthesizer Engine
 
All Classes Namespaces Files Functions Variables Macros Pages
Loading...
Searching...
No Matches
sample_and_hold.hh
1//
2// YASE SampleAndHold Module Header
3//
4// Copyright (C) 2022 Eric Klavins
5// This file is part of YASE
6//
7// YASE is free software: you can redistribute it and/or modify it under the
8// terms of the GNU General Public License as published by the Free Software
9// Foundation, either version 3 of the License, or (at your option) any later
10// version.
11//
12// YASE is distributed in the hope that it will be useful, but WITHOUT ANY
13// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
15// details.
16//
17// You should have received a copy of the GNU General Public License along
18// with YASE. If not, see <https://www.gnu.org/licenses/>.
19//
20
21#ifndef YASE_SAMPLEANDHOLD_H
22#define YASE_SAMPLEANDHOLD_H
23
24#include "yase.hh"
25
26namespace yase {
27
28 class SampleAndHold : public Triggerable {
29
30 public:
31
33 void init();
34 void update();
35 void trigger();
36 void release();
37
38 private:
39
40 int signal;
41
42 };
43
44}
45
46#endif
Definition sample_and_hold.hh:28
void update()
Definition sample_and_hold.cc:35
void init()
Definition sample_and_hold.cc:30
Definition triggerable.hh:28
Definition additive_saw.cc:24