gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

n2xFocusedParameter.h (371B)


      1 #pragma once
      2 
      3 #include "jucePluginEditorLib/focusedParameter.h"
      4 
      5 namespace n2xJucePlugin
      6 {
      7 	class Editor;
      8 
      9 	class FocusedParameter : public jucePluginEditorLib::FocusedParameter
     10 	{
     11 	public:
     12 		explicit FocusedParameter(const Editor& _editor);
     13 		void updateParameter(const std::string& _name, const std::string& _value) override;
     14 
     15 	private:
     16 		const Editor& m_editor;
     17 	};
     18 }