2
0
Fork 0
OPL/Source/InstrumentLoader.h

13 lines
322 B
C
Raw Normal View History

2013-11-13 09:15:17 +00:00
#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;
2013-11-13 09:15:17 +00:00
virtual String getExtension() = 0;
virtual ~InstrumentLoader() = default;
2013-11-13 09:15:17 +00:00
};