4 #include "synthfunctions.h" 82 class SynthLabCore :
public ModuleCore
89 virtual bool reset(CoreProcData& processInfo)
override;
90 virtual bool update(CoreProcData& processInfo)
override;
91 virtual bool render(CoreProcData& processInfo)
override;
92 virtual bool doNoteOn(CoreProcData& processInfo)
override;
93 virtual bool doNoteOff(CoreProcData& processInfo)
override;
virtual bool render(CoreProcData &processInfo)
Renders the output of the module.
Definition: synthlabcore.cpp:164
virtual bool reset(CoreProcData &processInfo)
Resets object to initialized state.
Definition: synthlabcore.cpp:29
SynthLabCore()
Construction: Cores follow the same construction pattern.
Definition: synthlabcore.cpp:7
virtual bool update(CoreProcData &processInfo)
Updates the object for the next block of audio processing.
Definition: synthlabcore.cpp:41
virtual bool doNoteOn(CoreProcData &processInfo)
Note-on handler for the ModuleCore.
Definition: synthlabcore.cpp:202
Definition: synthlabcore.cpp:4
double sampleRate
sample rate
Definition: synthlabcore.h:31
virtual bool doNoteOff(CoreProcData &processInfo)
Note-off handler for the ModuleCore.
Definition: synthlabcore.cpp:212