--- linuxsampler/trunk/src/network/lscpserver.h 2004/06/18 14:19:19 132 +++ linuxsampler/trunk/src/network/lscpserver.h 2004/06/18 14:29:02 133 @@ -130,4 +130,23 @@ } }; + +/** + * Instrument loader thread for the LinuxSampler Control Protocol (LSCP). + */ +class LSCPLoadInstrument : public Thread { + + public: + LSCPLoadInstrument(Engine* pEngine, String Filename, uint uiInstrument); + + protected: + // Instance variables. + Engine* pEngine; + String Filename; + uint uiInstrument; + + // Implementation of virtual method from class Thread. + int Main(); +}; + #endif // __LSCPSERVER_H_