SynthInterface.h 338 B

1234567891011
  1. #ifndef SEKAI_SYNTH_INTERFACE
  2. #define SEKAI_SYNTH_INTERFACE
  3. class IUnisyn
  4. {
  5. public:
  6. virtual void addUnit(const std::string& fileName,int count,float* a,float* b)=0;
  7. virtual float getLengthForUnit(const std::string& fileName)=0;
  8. virtual std::string getPhoLine(const std::string& fileName,int index)=0;
  9. };
  10. #endif