/[svn]/linuxsampler/trunk/src/engines/Engine.h
ViewVC logotype

Diff of /linuxsampler/trunk/src/engines/Engine.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 946 by schoenebeck, Sat Jul 1 13:30:52 2006 UTC revision 947 by schoenebeck, Mon Nov 27 21:34:55 2006 UTC
# Line 25  Line 25 
25  #define __LS_ENGINE_H__  #define __LS_ENGINE_H__
26    
27  #include "../common/global.h"  #include "../common/global.h"
28    #include "InstrumentManager.h"
29    
30  namespace LinuxSampler {  namespace LinuxSampler {
31    
# Line 57  namespace LinuxSampler { Line 58  namespace LinuxSampler {
58              virtual String Version() = 0;              virtual String Version() = 0;
59              virtual String EngineName() = 0;              virtual String EngineName() = 0;
60    
61                /**
62                 * Returns pointer to the Engine's InstrumentManager or NULL if
63                 * the Engine does not provide an InstrumentManager.
64                 *
65                 * <b>Important:</b> All engine instances of the same engine
66                 * type have to return the same InstrumentManager, that is all
67                 * instances of the same engine type have to share one and
68                 * the same InstrumentManager object.
69                 */
70                virtual InstrumentManager* GetInstrumentManager() = 0;
71    
72          protected:          protected:
73              virtual ~Engine() {}; // MUST only be destroyed by EngineFactory              virtual ~Engine() {}; // MUST only be destroyed by EngineFactory
74              friend class EngineFactory;              friend class EngineFactory;

Legend:
Removed from v.946  
changed lines
  Added in v.947

  ViewVC Help
Powered by ViewVC