FxPage.h (349B)
1 #pragma once 2 3 #include "juceUiLib/condition.h" 4 5 namespace genericVirusUI 6 { 7 class VirusEditor; 8 9 class FxPage 10 { 11 public: 12 explicit FxPage(const VirusEditor& _editor); 13 ~FxPage(); 14 private: 15 std::unique_ptr<genericUI::ConditionByParameterValues> m_conditionReverb; 16 std::unique_ptr<genericUI::ConditionByParameterValues> m_conditionDelay; 17 }; 18 }