summaryrefslogtreecommitdiff
path: root/lib/ChubgraphStd.ck
blob: 0e5ec90955c0b124c069acc1421693feb0ca633e (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
/*
 * BUG WORKAROUND:
 * Base class for all Chubgraphs,
 * necessary because some default methods are unimplemented in the
 * Chubgraph class
 */
public class ChubgraphStd extends Chubgraph {
	fun float
	gain(float g)
	{
		return g => outlet.gain;
	}

	fun float
	gain()
	{
		return outlet.gain();
	}

	fun float
	last()
	{
		return outlet.last();
	}
}