Krotos Modules 3
Loading...
Searching...
No Matches
Kwidget_Sawtooth.h
Go to the documentation of this file.
1namespace krotos
2{
3 class Kwidget_Sawtooth : public Kwidget
4 {
5 public:
6 struct Parameters
7 {
8 static const String Amplitude;
9 };
10
11 Kwidget_Sawtooth(const String& id);
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_Sawtooth)
20 };
21} // namespace krotos
Definition Kwidget_Sawtooth.h:4
std::unique_ptr< KwidgetProcessor > createProcessor() override
Definition Kwidget_Sawtooth.cpp:23
std::vector< ParameterInfo > createParameters() override
Definition Kwidget_Sawtooth.cpp:18
Kwidget_Sawtooth(const String &id)
Definition Kwidget_Sawtooth.cpp:5
std::unique_ptr< KwidgetGUI > createGUI() override
Definition Kwidget_Sawtooth.cpp:28
Definition Kwidget.h:8
Definition AirAbsorptionFilter.cpp:2
Definition Kwidget_Sawtooth.h:7
static const String Amplitude
Definition Kwidget_Sawtooth.h:8