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

Tabs.cpp (305B)


      1 #include "Tabs.h"
      2 
      3 #include "VirusEditor.h"
      4 
      5 namespace genericVirusUI
      6 {
      7 	Tabs::Tabs(const VirusEditor& _editor)
      8 		: genericUI::TabGroup("pages"
      9 			, {"page_osc", "page_lfo", "page_fx", "page_arp", "page_presets"}
     10 			, {"TabOsc", "TabLfo", "TabEffects", "TabArp", "Presets"}
     11 		)
     12 	{
     13 		create(_editor);
     14 	}
     15 }