Krotos Modules 3
Loading...
Searching...
No Matches
Kwidget_Lfo.h
Go to the documentation of this file.
1namespace krotos
2{
3 class Kwidget_Lfo : public Kwidget
4 {
5 public:
6 struct Parameters
7 {
8 static const String Frequency;
9 };
10
11 Kwidget_Lfo(const String& kwidgetID);
12
13 protected:
14 std::vector<ParameterInfo> createParameters() override;
15 std::unique_ptr<KwidgetProcessor> createProcessor() override;
16 std::unique_ptr<KwidgetGUI> createGUI() override;
17
18 private:
19 JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(Kwidget_Lfo)
20 };
21} // namespace krotos
Definition Kwidget_Lfo.h:4
std::vector< ParameterInfo > createParameters() override
Definition Kwidget_Lfo.cpp:7
std::unique_ptr< KwidgetProcessor > createProcessor() override
Definition Kwidget_Lfo.cpp:12
Kwidget_Lfo(const String &kwidgetID)
Definition Kwidget_Lfo.cpp:5
std::unique_ptr< KwidgetGUI > createGUI() override
Definition Kwidget_Lfo.cpp:17
Definition Kwidget.h:8
Definition AirAbsorptionFilter.cpp:2
Definition Kwidget_Lfo.h:7
static const String Frequency
Definition Kwidget_Lfo.h:8