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
ConvoEngine: Make max channel counts configurable.
[wdl/wdl-ol.git]
/
IPlugExamples
/
IPlugPlush
/
IPlugPlush.h
blob
4eb469597492545395edb3e90c52f3216fbca687
1
#ifndef __IPLUGPLUSH__
2
#define __IPLUGPLUSH__
3
4
#include
"IPlug_include_in_plug_hdr.h"
5
6
class
IPlugPlush
:
public
IPlug
7
{
8
public
:
9
10
IPlugPlush
(
IPlugInstanceInfo instanceInfo
);
11
~
IPlugPlush
();
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