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

romLoader.h (443B)


      1 #pragma once
      2 
      3 #include <string>
      4 #include <vector>
      5 #include <cstddef>
      6 #include <set>
      7 
      8 namespace synthLib
      9 {
     10 	class RomLoader
     11 	{
     12 	public:
     13 		static std::vector<std::string> findFiles(const std::string& _extension, size_t _minSize, size_t _maxSize);
     14 		static std::vector<std::string> findFiles(const std::string& _path, const std::string& _extension, size_t _minSize, size_t _maxSize);
     15 
     16 		static void addSearchPath(const std::string& _path);
     17 	};
     18 }