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

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

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

revision 946 by schoenebeck, Sun Jul 23 16:44:08 2006 UTC revision 947 by schoenebeck, Mon Nov 27 21:34:55 2006 UTC
# Line 113  namespace LinuxSampler { Line 113  namespace LinuxSampler {
113               */               */
114              bool GetSolo();              bool GetSolo();
115    
116                /**
117                 * Returns current MIDI program (change) number of this
118                 * EngineChannel.
119                 */
120                uint8_t GetMidiProgram();
121    
122                /**
123                 * Change EngineChannel's MIDI program.
124                 */
125                void SetMidiProgram(uint8_t Program);
126    
127                /**
128                 * Returns current MIDI bank MSB (coarse) number of this
129                 * EngineChannel.
130                 */
131                uint8_t GetMidiBankMsb();
132    
133                /**
134                 * Change current MIDI bank MSB (coarse) number of this
135                 * EngineChannel.
136                 */
137                void SetMidiBankMsb(uint8_t BankMSB);
138    
139                /**
140                 * Returns current MIDI bank LSB (fine) number of this
141                 * EngineChannel.
142                 */
143                uint8_t GetMidiBankLsb();
144    
145                /**
146                 * Change current MIDI bank LSB (fine) number of this
147                 * EngineChannel.
148                 */
149                void SetMidiBankLsb(uint8_t BankLSB);
150    
151              int iSamplerChannelIndex; ///< FIXME: nasty hack, might be removed (should be 'virtual EngineChannel* EngineChannel() = 0;', but due to cyclic dependencies only a void* solution would be possible ATM)              int iSamplerChannelIndex; ///< FIXME: nasty hack, might be removed (should be 'virtual EngineChannel* EngineChannel() = 0;', but due to cyclic dependencies only a void* solution would be possible ATM)
152    
153          protected:          protected:
# Line 121  namespace LinuxSampler { Line 156  namespace LinuxSampler {
156              friend class EngineChannelFactory;              friend class EngineChannelFactory;
157    
158          private:          private:
159              int  iMute;              int     iMute;
160              bool bSolo;              bool    bSolo;
161                uint8_t uiMidiProgram;
162                uint8_t uiMidiBankMsb;
163                uint8_t uiMidiBankLsb;
164      };      };
165    
166  } // namespace LinuxSampler  } // namespace LinuxSampler

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

  ViewVC Help
Powered by ViewVC