diff options
Diffstat (limited to 'lib/ChubgraphStd.ck')
-rw-r--r-- | lib/ChubgraphStd.ck | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/ChubgraphStd.ck b/lib/ChubgraphStd.ck deleted file mode 100644 index 0e5ec90..0000000 --- a/lib/ChubgraphStd.ck +++ /dev/null @@ -1,25 +0,0 @@ -/* - * 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(); - } -} |