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

patchhistory.h (155B)


      1 #pragma once
      2 
      3 #include <vector>
      4 
      5 #include "patchdbtypes.h"
      6 
      7 namespace pluginLib::patchDB
      8 {
      9 	class PatchHistory
     10 	{
     11 		std::vector<PatchPtr> m_patches;
     12 	};
     13 }