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

tools.h (222B)


      1 #pragma once
      2 
      3 #include <string>
      4 
      5 namespace pluginLib
      6 {
      7 	class Tools
      8 	{
      9 	public:
     10 		static bool isHeadless();
     11 
     12 		static std::string getPublicDataFolder(const std::string& _vendorName, const std::string& _productName);
     13 	};
     14 }