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

n2xPart.h (329B)


      1 #pragma once
      2 
      3 #include "jucePluginEditorLib/partbutton.h"
      4 
      5 namespace n2xJucePlugin
      6 {
      7 	class Editor;
      8 
      9 	class Part : public jucePluginEditorLib::PartButton<juce::DrawableButton>
     10 	{
     11 	public:
     12 		Part(Editor& _editor, const std::string& _name, ButtonStyle _buttonStyle);
     13 
     14 		void onClick() override;
     15 	private:
     16 		Editor& m_editor;
     17 	};
     18 }