| 1 | #include "SliderContainer.h" |
| 2 | |
| 3 | SliderContainer::SliderContainer(const std::shared_ptr<FrequencyShiftPluginParameters> &valueTreeState, const Colour textColour, const int textBoxHeight) : |
| 4 | freqSlider(valueTreeState, textColour, textBoxHeight), scaleSlider(valueTreeState, textColour, textBoxHeight) |
| 5 | { |
| 6 | this->pluginParameters = valueTreeState; |
| 7 | addAndMakeVisible(freqSlider); |
| 8 | addAndMakeVisible(scaleSlider); |
| 9 | } |
| 10 | |
| 11 | SliderContainer::~SliderContainer() = default; |
| 12 |
nothing calls this directly
no outgoing calls
no test coverage detected