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

dragAndDropObject.cpp (216B)


      1 #include "dragAndDropObject.h"
      2 
      3 namespace jucePluginEditorLib
      4 {
      5 	std::string DragAndDropObject::getExportFileName(const pluginLib::Processor& _processor) const
      6 	{
      7 		return _processor.getProperties().name + "_";
      8 	}
      9 }