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;
SynthLabCore()
Construction: Cores follow the same construction pattern.
Definition: synthlabcore.cpp:29
virtual bool doNoteOff(CoreProcData &processInfo) override
Note-off handler for the ModuleCore.
Definition: synthlabcore.cpp:135
Definition: synthengine.cpp:16
virtual bool update(CoreProcData &processInfo) override
Updates the object for the next block of audio processing.
Definition: synthlabcore.cpp:79
double sampleRate
sample rate
Definition: synthlabcore.h:108
virtual bool render(CoreProcData &processInfo) override
Renders the output of the module.
Definition: synthlabcore.cpp:98
virtual bool doNoteOn(CoreProcData &processInfo) override
Note-on handler for the ModuleCore.
Definition: synthlabcore.cpp:116
virtual bool reset(CoreProcData &processInfo) override
Resets object to initialized state.
Definition: synthlabcore.cpp:61