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 }