repo.or.cz
/
wdl
/
wdl-ol.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[IPLUG/EXAMPLES] fix IPlugChunks example
[wdl/wdl-ol.git]
/
IPlugExamples
/
IPlugText
/
IPlugText.h
blob
9e685e3bc3027b7fa177a1e9a7ede51827c87307
1
#ifndef __IPLUGTEXT__
2
#define __IPLUGTEXT__
3
4
#include
"IPlug_include_in_plug_hdr.h"
5
6
class
IPlugText
:
public
IPlug
7
{
8
public
:
9
10
IPlugText
(
IPlugInstanceInfo instanceInfo
);
11
~
IPlugText
();
12
13
void
Reset
();
14
void
OnParamChange
(
int
paramIdx
);
15
16
void
ProcessDoubleReplacing
(
double
**
inputs
,
double
**
outputs
,
int
nFrames
);
17
18
private
:
19
20
double
mGain
;
21
};
22
23
#endif