2
0
Fork 0
OPL/Source/InstrumentLoader.h
George Reales 03b6d2c2ef v1.8
Parameter exposure (AU/iOS AUv3/VST/VST3) for host automation.
iOS Universal build with iPhone support.
Enhanced AUv3 GUI window display fit.
AUv3 GUI scrolling using left and right border sides.
2020-09-14 11:02:19 +02:00

13 lines
322 B
C++
Executable file

#pragma once
#include "PluginProcessor.h"
// Just specifies the interfaces for instrument loaders.
class InstrumentLoader
{
public:
virtual void loadInstrumentData(int n, const unsigned char* data, AdlibBlasterAudioProcessor *proc) = 0;
virtual String getExtension() = 0;
virtual ~InstrumentLoader() = default;
};