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

datasourcetree.h (232B)


      1 #pragma once
      2 
      3 #include "tree.h"
      4 
      5 namespace jucePluginEditorLib::patchManager
      6 {
      7 	class DatasourceTree : public Tree
      8 	{
      9 	public:
     10 		explicit DatasourceTree(PatchManager& _pm, const std::initializer_list<GroupType>& _groupTypes);
     11 	};
     12 }