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

serialization.h (203B)


      1 #pragma once
      2 
      3 #include <string>
      4 #include <vector>
      5 
      6 namespace pluginLib::patchDB
      7 {
      8 	class Serialization
      9 	{
     10 	public:
     11 		static std::vector<std::string> split(const std::string& _string, char _delim);
     12 	};
     13 }