File: EffectMgr.cpp

package info (click to toggle)
zynaddsubfx 3.0.6-7.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 65,848 kB
  • sloc: cpp: 124,436; ansic: 39,936; objc: 2,496; makefile: 1,369; python: 567; sh: 566; ruby: 178; javascript: 50
file content (17 lines) | stat: -rw-r--r-- 303 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "EffectMgr.h"
#include "Echo.h"
#include "LFO.h"
#include "util.h"

rtosc::Ports EffectMgr::ports = {
    OPTION(EffectMgr, Echo, echo, eff),
    OPTION(EffectMgr, LFO,  lfo,  eff),
    DUMMY(type)
};

EffectMgr::EffectMgr(void)
    :eff(NULL){}
EffectMgr::~EffectMgr(void)
{
    delete eff;
}