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

roottreeitem.h (379B)


      1 #pragma once
      2 #include "treeitem.h"
      3 
      4 namespace jucePluginEditorLib::patchManager
      5 {
      6 	class RootTreeItem : public TreeItem
      7 	{
      8 	public:
      9 		explicit RootTreeItem(PatchManager& _pm);
     10 
     11 		bool mightContainSubItems() override
     12 		{
     13 			return true;
     14 		}
     15 
     16 		bool isInterestedInDragSource(const juce::DragAndDropTarget::SourceDetails& _dragSourceDetails) override
     17 		{
     18 			return false;
     19 		}
     20 	};
     21 }