/[svn]/linuxsampler/trunk/src/Sampler.h
ViewVC logotype

Annotation of /linuxsampler/trunk/src/Sampler.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1686 - (hide annotations) (download) (as text)
Thu Feb 14 14:58:50 2008 UTC (16 years, 2 months ago) by schoenebeck
File MIME type: text/x-c++hdr
File size: 26038 byte(s)
* added new LSCP event "CHANNEL_MIDI" which can be used by frontends to
  react on MIDI data arriving on certain sampler channels (so far only
  Note-On and Note-Off events are sent via this LSCP event)
* bumped LSCP compliance version to 1.4
* bumped LS version to 0.5.1.3cvs

1 schoenebeck 53 /***************************************************************************
2     * *
3     * LinuxSampler - modular, streaming capable sampler *
4     * *
5 schoenebeck 61 * Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck *
6 schoenebeck 1686 * Copyright (C) 2005 - 2008 Christian Schoenebeck *
7 schoenebeck 53 * *
8     * This program is free software; you can redistribute it and/or modify *
9     * it under the terms of the GNU General Public License as published by *
10     * the Free Software Foundation; either version 2 of the License, or *
11     * (at your option) any later version. *
12     * *
13     * This program is distributed in the hope that it will be useful, *
14     * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16     * GNU General Public License for more details. *
17     * *
18     * You should have received a copy of the GNU General Public License *
19     * along with this program; if not, write to the Free Software *
20     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, *
21     * MA 02111-1307 USA *
22     ***************************************************************************/
23    
24     #ifndef __LS_SAMPLER_H__
25     #define __LS_SAMPLER_H__
26    
27     #include <vector>
28     #include <map>
29 iliev 1130 #include "EventListeners.h"
30 schoenebeck 53 #include "common/global.h"
31 schoenebeck 880 #include "common/Exception.h"
32 schoenebeck 890 #include "engines/EngineChannel.h"
33 schoenebeck 203 #include "drivers/midi/MidiInputDevice.h"
34     #include "drivers/audio/AudioOutputDevice.h"
35 schoenebeck 53
36     namespace LinuxSampler {
37    
38     // just symbol prototyping
39     class Sampler;
40    
41 schoenebeck 411 /** @brief LinuxSampler sampler channel
42 schoenebeck 57 *
43 persson 840 * Encapsulates a channel of a specific sampler engine type, one
44 schoenebeck 411 * connection to a MIDI input device and one connection to an audio
45     * output device. You cannot create an instance of this class on your
46     * own, you have to use the AddSamplerChannel() method of the Sampler
47     * object to create a new sampler channel.
48 schoenebeck 57 */
49 schoenebeck 53 class SamplerChannel {
50     public:
51 schoenebeck 57 /**
52 schoenebeck 411 * Assign a sampler engine type to this sampler channel.
53 schoenebeck 57 *
54 schoenebeck 411 * @param EngineType - type of the engine to use
55 schoenebeck 880 * @throws Exception - if \a EngineType is invalid
56 schoenebeck 900 * @see Sampler::AvailableEngineTypes()
57 schoenebeck 57 */
58 schoenebeck 880 void SetEngineType(String EngineType) throw (Exception);
59 schoenebeck 57
60     /**
61 schoenebeck 123 * Connect this sampler channel to an audio output device, that
62     * is an instance of an audio output driver. If this sampler
63     * channel was already connected to an audio output device, then
64     * the old connection will automatically be removed before.
65 schoenebeck 57 *
66 schoenebeck 123 * @param pDevice - audio output device to connect to
67 schoenebeck 57 */
68 schoenebeck 123 void SetAudioOutputDevice(AudioOutputDevice* pDevice);
69 schoenebeck 57
70     /**
71 schoenebeck 411 * Connect this sampler channel to a MIDI input device.
72 schoenebeck 57 *
73 capela 159 * @param pDevice - MIDI input device to connect to
74     */
75     void SetMidiInputDevice(MidiInputDevice *pDevice);
76    
77     /**
78 schoenebeck 411 * Connect this sampler channel to a MIDI input port.
79 capela 159 *
80     * @param MidiPort - MIDI port to connect to
81     */
82     void SetMidiInputPort(int MidiPort);
83    
84     /**
85 schoenebeck 411 * Define on which MIDI channel(s) this sampler channel should
86     * listen to. By default, that is after creation of a new
87     * sampler channel, the sampler channel will listen to all MIDI
88     * channels.
89 capela 159 *
90 schoenebeck 411 * @param MidiChannel - MIDI channel to listen
91 capela 159 */
92 schoenebeck 675 void SetMidiInputChannel(midi_chan_t MidiChannel);
93 capela 159
94     /**
95     * Connect this sampler channel to a MIDI input triplet.
96     *
97     * @param pDevice - MIDI input device to connect to
98 schoenebeck 221 * @param iMidiPort - MIDI port to connect to
99 schoenebeck 57 * @param MidiChannel - optional: MIDI channel on which the
100     * sampler channel should listen to
101     * (default: listen on all MIDI channels)
102     */
103 schoenebeck 675 void SetMidiInput(MidiInputDevice* pDevice, int iMidiPort, midi_chan_t MidiChannel = midi_chan_all);
104 schoenebeck 57
105     /**
106 schoenebeck 411 * Returns the EngineChannel object that was deployed on this
107     * sampler channel appropriate to the given sampler engine type.
108 schoenebeck 57 *
109     * @returns pointer to engine or NULL if no engine deployed
110     */
111 schoenebeck 411 EngineChannel* GetEngineChannel();
112 schoenebeck 57
113     /**
114 capela 159 * Returns the MIDI input channel to which this sampler
115     * channel is currently connected to.
116 schoenebeck 57 *
117 capela 159 * @returns The MIDI input channel on which the sampler
118     * channel is listening to.
119 schoenebeck 57 */
120 schoenebeck 675 midi_chan_t GetMidiInputChannel();
121 schoenebeck 57
122     /**
123 capela 159 * Returns the MIDI input port number to which this sampler
124     * channel is currently connected to.
125     *
126     * @returns MIDI input port number or -1 if not connected
127     */
128     int GetMidiInputPort();
129    
130     /**
131 schoenebeck 57 * Returns the audio output device to which this sampler channel
132     * is currently connected to.
133     *
134     * @returns pointer to audio output device or NULL if not
135     * connected
136     */
137     AudioOutputDevice* GetAudioOutputDevice();
138    
139     /**
140 capela 159 * Returns the MIDI input device to which this sampler channel
141 senkov 155 * is currently connected to.
142     *
143 capela 159 * @returns pointer to MIDI input device or NULL if not
144 senkov 155 * connected
145     */
146     MidiInputDevice* GetMidiInputDevice();
147    
148     /**
149 schoenebeck 57 * Returns the index number of this sampler channel within the
150     * Sampler instance.
151     */
152     uint Index();
153 iliev 1130
154     /**
155     * Registers the specified listener to be notified
156     * when the engine type of this sampler channel is changed.
157     */
158     void AddEngineChangeListener(EngineChangeListener* l);
159 schoenebeck 57
160 iliev 1130 /**
161     * Removes the specified listener.
162     */
163     void RemoveEngineChangeListener(EngineChangeListener* l);
164    
165     /**
166     * Removes the specified listener.
167     */
168     void RemoveAllEngineChangeListeners();
169    
170     /**
171 schoenebeck 1686 * Notifies listeners that the engine type of this sampler
172     * channel is going to be changed soon.
173     */
174     void fireEngineToBeChanged();
175    
176     /**
177 iliev 1130 * Notifies listeners that the engine
178     * type of this sampler channel is changed.
179     */
180     void fireEngineChanged();
181    
182    
183 schoenebeck 57 protected:
184 schoenebeck 53 SamplerChannel(Sampler* pS);
185 letz 502 virtual ~SamplerChannel();
186 schoenebeck 57
187 capela 159 /** Getting MIDI input device port given its index number. */
188 schoenebeck 675 MidiInputPort* __GetMidiInputDevicePort(int iMidiPort);
189 schoenebeck 203
190 schoenebeck 53 Sampler* pSampler;
191 schoenebeck 411 EngineChannel* pEngineChannel;
192 schoenebeck 53 AudioOutputDevice* pAudioOutputDevice;
193 capela 159 MidiInputDevice* pMidiInputDevice;
194 schoenebeck 53 int iIndex;
195 schoenebeck 57
196     friend class Sampler;
197 schoenebeck 675 private:
198     int iMidiPort; ///< Don't access directly, read GetMidiInputPort() instead !
199     midi_chan_t midiChannel; ///< Don't access directly, read GetMidiInputChannel() instead !
200 iliev 1130 ListenerList<EngineChangeListener*> llEngineChangeListeners;
201 schoenebeck 53 };
202    
203 schoenebeck 411 /** @brief LinuxSampler main class
204 schoenebeck 57 *
205     * This is the toplevel class for a LinuxSampler instance.
206     *
207     * LinuxSampler can have arbitrary numbers of sampler channels. Each
208     * sampler channel can individually be deployed with it's own sampler
209     * engine, connected to an arbitrary MIDI input device and connected to
210     * an arbitrary audio output device. Here an example setup:
211 schoenebeck 675 * @code
212 schoenebeck 898 * S.Channel MIDI in S.Engine Audio out
213 schoenebeck 675 * -------------------------------------------------------------------
214 schoenebeck 898 * 0 Alsa -> gig::Engine -> Jack
215     * 1 VSTi -> Akai::Engine -> VSTi
216     * 2 Jack -> DLS::Engine -> Jack
217     * 3 Jack -> SF::Engine -> Alsa
218 schoenebeck 57 *
219 schoenebeck 675 * ... (and so on) ...
220     * @endcode
221 schoenebeck 57 *
222     * Note that not all audio and MIDI backends and sampler engines listed
223 schoenebeck 898 * in the example above might already been implemented!
224 schoenebeck 57 *
225     * As you can see in the example setup, LinuxSampler is capable to use
226     * several, different audio output and MIDI input systems
227     * simultaniously at the same time. Here the example setup shown in the
228 schoenebeck 898 * aspect of MIDI input and audio output devices / drivers:
229 schoenebeck 675 * @code
230 schoenebeck 898 * ######################### #########################
231     * # AudioOutputDeviceJack # # AudioOutputDeviceVSTi #
232     * ######################### #########################
233     * ^ ^ ^
234     * /------------>|Sampler Channel 0|-----/ | |
235     * | /--------->|Sampler Channel 1|---------------------/
236     * | | /------>|Sampler Channel 2|---------/
237     * | | | /--->|Sampler Channel 3|------------>#########################
238     * | | | | ... (and so on) ... # AudioOutputDeviceAlsa #
239     * | | | | #########################
240     * | | | \-----------------------------------------------------\
241     * | | \--------------------------------------------\ |
242     * | \--------------------\ | |
243     * | | | |
244 schoenebeck 675 * ####################### ####################### #######################
245     * # MidiInputDeviceAlsa # # MidiInputDeviceVSTi # # MidiInputDeviceJack #
246     * ####################### ####################### #######################
247     * @endcode
248 schoenebeck 57 *
249     * As you can see in this example setup, one device (that is midi input
250     * driver / audio output driver) can be connected multiple times to
251     * different sampler channels.
252 schoenebeck 898 *
253     * It's even possible to create multiple instances of the same driver, for
254     * example multiple instances of the Alsa output driver to use multiple
255     * sound cards at the same time, or multiple instances of the JACK audio
256     * output driver to leverage SMP systems or boxes with several hard discs.
257 schoenebeck 57 */
258 schoenebeck 53 class Sampler {
259     public:
260 schoenebeck 57 /**
261     * Constructor. Create a LinuxSampler instance.
262     */
263 schoenebeck 53 Sampler();
264 schoenebeck 57
265     /**
266     * Destructor.
267     */
268 letz 502 virtual ~Sampler();
269 schoenebeck 57
270     /**
271     * Returns the number of sampler channels currently allocated.
272     */
273     uint SamplerChannels();
274    
275     /**
276 schoenebeck 209 * Create and add a new sampler channel to this Sampler
277     * instance. For race condition reasons the new channel will use
278     * an index past the last already existing sampler channel
279     * index (in case the index limit was not reached yet, otherwise
280     * a free index starting from 0 is searched).
281 schoenebeck 57 *
282     * @returns pointer to new sampler channel
283     */
284     SamplerChannel* AddSamplerChannel();
285    
286     /**
287     * Returns the sampler channel of the given sampler channel
288     * index.
289     *
290     * @returns pointer to sought sampler channel
291     */
292     SamplerChannel* GetSamplerChannel(uint uiSamplerChannel);
293    
294     /**
295 schoenebeck 209 * Returns all created sampler channels.
296     */
297     std::map<uint, SamplerChannel*> GetSamplerChannels();
298    
299     /**
300 schoenebeck 57 * Destroy and remove the given sampler channel from this
301     * Sampler instance.
302     *
303     * @param pSamplerChannel - pointer to sampler channel to remove
304     */
305     void RemoveSamplerChannel(SamplerChannel* pSamplerChannel);
306    
307     /**
308     * Destroy and remove the given sampler channel from this
309     * Sampler instance.
310     *
311     * @param uiSamplerChannel - index of the sampler channel to
312     * remove
313     */
314     void RemoveSamplerChannel(uint uiSamplerChannel);
315    
316 schoenebeck 209 /**
317 iliev 1130 * Registers the specified listener to be notified
318     * when the number of sampler chanels is changed.
319     */
320     void AddChannelCountListener(ChannelCountListener* l);
321    
322     /**
323     * Removes the specified listener.
324     */
325     void RemoveChannelCountListener(ChannelCountListener* l);
326    
327     /**
328     * Registers the specified listener to be notified
329     * when the number of audio output devices is changed.
330     */
331     void AddAudioDeviceCountListener(AudioDeviceCountListener* l);
332    
333     /**
334     * Removes the specified listener.
335     */
336     void RemoveAudioDeviceCountListener(AudioDeviceCountListener* l);
337    
338    
339     /**
340     * Registers the specified listener to be notified
341     * when the number of MIDI input devices is changed.
342     */
343     void AddMidiDeviceCountListener(MidiDeviceCountListener* l);
344    
345     /**
346     * Removes the specified listener.
347     */
348     void RemoveMidiDeviceCountListener(MidiDeviceCountListener* l);
349    
350     /**
351     * Registers the specified listener to be notified when the number
352     * of active voices in a particular sampler channel is changed.
353     */
354     void AddVoiceCountListener(VoiceCountListener* l);
355    
356     /**
357     * Removes the specified listener.
358     */
359     void RemoveVoiceCountListener(VoiceCountListener* l);
360    
361     /**
362     * Notifies listeners that the number of active voices
363     * on the specified sampler channel is changed.
364     * @param ChannelId The numerical ID of the sampler channel.
365     * @param NewCount The new number of active voices.
366     */
367     void fireVoiceCountChanged(int ChannelId, int NewCount);
368    
369     /**
370     * Registers the specified listener to be notified when the number
371     * of active disk streams in a particular sampler channel is changed.
372     */
373     void AddStreamCountListener(StreamCountListener* l);
374    
375     /**
376     * Removes the specified listener.
377     */
378     void RemoveStreamCountListener(StreamCountListener* l);
379    
380     /**
381     * Notifies listeners that the number of active disk streams
382     * on the specified sampler channel is changed.
383     * @param ChannelId The numerical ID of the sampler channel.
384     * @param NewCount The new number of active disk streams.
385     */
386     void fireStreamCountChanged(int ChannelId, int NewCount);
387    
388     /**
389     * Registers the specified listener to be
390     * notified when the fill state of the disk stream
391     * buffers on a specific sampler channel is changed.
392     */
393     void AddBufferFillListener(BufferFillListener* l);
394    
395     /**
396     * Removes the specified listener.
397     */
398     void RemoveBufferFillListener(BufferFillListener* l);
399    
400     /**
401     * Notifies listeners that the fill state of the disk stream
402     * buffers on the specified sampler channel is changed.
403     * @param ChannelId The numerical ID of the sampler channel.
404     * @param FillData The buffer fill data for the specified sampler channel.
405     */
406     void fireBufferFillChanged(int ChannelId, String FillData);
407    
408     /**
409     * Registers the specified listener to be notified
410     * when total number of active voices is changed.
411     */
412     void AddTotalVoiceCountListener(TotalVoiceCountListener* l);
413    
414     /**
415     * Removes the specified listener.
416     */
417     void RemoveTotalVoiceCountListener(TotalVoiceCountListener* l);
418    
419     /**
420     * Notifies listeners that the total number of active voices is changed.
421     * @param NewCount The new number of active voices.
422     */
423     void fireTotalVoiceCountChanged(int NewCount);
424 iliev 1541
425     void AddTotalStreamCountListener(TotalStreamCountListener* l);
426     void RemoveTotalStreamCountListener(TotalStreamCountListener* l);
427     void fireTotalStreamCountChanged(int NewCount);
428 iliev 1130
429     /**
430     * Registers the specified listener to be notified when the number
431     * of effect sends on a particular sampler channel is changed.
432     */
433     void AddFxSendCountListener(FxSendCountListener* l);
434    
435     /**
436     * Removes the specified listener.
437     */
438     void RemoveFxSendCountListener(FxSendCountListener* l);
439    
440     /**
441 schoenebeck 209 * Returns the names of all available audio output drivers.
442     */
443 schoenebeck 123 std::vector<String> AvailableAudioOutputDrivers();
444    
445 schoenebeck 57 /**
446 schoenebeck 900 * Returns the names of all available MIDI input drivers.
447     */
448     std::vector<String> AvailableMidiInputDrivers();
449    
450     /**
451     * Returns the names of all available sampler engine types.
452     * @see SamplerChannel::SetEngineType()
453     */
454     std::vector<String> AvailableEngineTypes();
455    
456     /**
457 senkov 155 * Create an audio output device.
458 schoenebeck 57 *
459 schoenebeck 123 * @param AudioDriver - name of the audio driver
460     * @param Parameters - eventually needed driver parameters to
461     * create the device
462 schoenebeck 57 * @returns pointer to created audio output device
463 schoenebeck 880 * @throws Exception if device could not be created
464 schoenebeck 57 */
465 schoenebeck 880 AudioOutputDevice* CreateAudioOutputDevice(String AudioDriver, std::map<String,String> Parameters) throw (Exception);
466 schoenebeck 57
467 senkov 155 /**
468     * Create a midi input device.
469     *
470     * @param MidiDriver - name of the midi driver
471     * @param Parameters - eventually needed driver parameters to
472     * create the device
473     * @returns pointer to created midi input device
474 schoenebeck 880 * @throws Exception if device could not be created
475 senkov 155 */
476 schoenebeck 880 MidiInputDevice* CreateMidiInputDevice(String MidiDriver, std::map<String,String> Parameters) throw (Exception);
477 senkov 155
478 schoenebeck 209 /**
479     * Returns the number of all created audio output devices.
480     */
481 schoenebeck 123 uint AudioOutputDevices();
482 schoenebeck 209
483     /**
484     * Returns the number of all created MIDI input devices.
485     */
486 senkov 155 uint MidiInputDevices();
487 schoenebeck 57
488 schoenebeck 209 /**
489     * Returns all created audio output devices.
490     */
491 schoenebeck 123 std::map<uint, AudioOutputDevice*> GetAudioOutputDevices();
492    
493 schoenebeck 209 /**
494     * Returns all created MIDI input devices.
495     */
496 senkov 155 std::map<uint, MidiInputDevice*> GetMidiInputDevices();
497    
498 schoenebeck 209 /**
499     * Destroy the given audio output device and takes care if there
500     * are still sampler angines connected to this device, etc.
501     *
502 schoenebeck 880 * @throws Exception if sampler channels are still
503     * connected to the device
504 schoenebeck 209 */
505 schoenebeck 880 void DestroyAudioOutputDevice(AudioOutputDevice* pDevice) throw (Exception);
506 schoenebeck 123
507 schoenebeck 209 /**
508     * Destroy the given MIDI input device and takes care if there
509     * are still sampler angines connected to this device, etc.
510     *
511 schoenebeck 880 * @throws Exception if sampler channels are still
512     * connected to the device
513 schoenebeck 209 */
514 schoenebeck 880 void DestroyMidiInputDevice(MidiInputDevice* pDevice) throw (Exception);
515 schoenebeck 209
516 iliev 1541 /**
517     * Gets the current number of all active streams.
518     * @returns The current number of all active streams.
519     */
520     int GetDiskStreamCount();
521    
522 schoenebeck 212 /**
523 iliev 778 * Gets the current number of all active voices.
524     * @returns The current number of all active voices.
525     */
526     int GetVoiceCount();
527    
528     /**
529 schoenebeck 212 * Reset the whole sampler. Destroy all engines, sampler
530     * channels, MIDI input devices and audio output devices.
531     */
532     void Reset();
533    
534 schoenebeck 53 protected:
535 iliev 1130 /**
536     * Notifies listeners that the number of sampler channels has been changed.
537     * @param NewCount The new number of sampler channels.
538     */
539     void fireChannelCountChanged(int NewCount);
540    
541     /**
542 schoenebeck 1686 * Notifies listeners that the specified sampler channel has just
543     * been added.
544     * @param pChannel The new sampler channel.
545     */
546     void fireChannelAdded(SamplerChannel* pChannel);
547    
548     /**
549     * Notifies listeners that the specified sampler channel is
550     * going to be removed soon.
551     * @param pChannel sampler channel to be removed.
552     */
553     void fireChannelToBeRemoved(SamplerChannel* pChannel);
554    
555     /**
556 iliev 1130 * Notifies listeners that the number of audio output devices has been changed.
557     * @param NewCount The new number of audio output devices.
558     */
559     void fireAudioDeviceCountChanged(int NewCount);
560    
561     /**
562     * Notifies listeners that the number of MIDI input devices has been changed.
563     * @param NewCount The new number of MIDI input devices.
564     */
565     void fireMidiDeviceCountChanged(int NewCount);
566    
567     /**
568     * Notifies listeners that the number of effect sends
569     * on a particular sampler channel is changed.
570     * @param ChannelId The numerical ID of the sampler channel.
571     * @param NewCount The new number of sampler channels.
572     */
573     void fireFxSendCountChanged(int ChannelId, int NewCount);
574    
575 schoenebeck 123 typedef std::map<uint, AudioOutputDevice*> AudioOutputDeviceMap;
576 senkov 155 typedef std::map<uint, MidiInputDevice*> MidiInputDeviceMap;
577 schoenebeck 209 typedef std::map<uint, SamplerChannel*> SamplerChannelMap;
578 schoenebeck 53
579 schoenebeck 209 SamplerChannelMap mSamplerChannels; ///< contains all created sampler channels
580     AudioOutputDeviceMap mAudioOutputDevices; ///< contains all created audio output devices
581     MidiInputDeviceMap mMidiInputDevices; ///< contains all created MIDI input devices
582 schoenebeck 53
583     friend class SamplerChannel;
584 iliev 1130
585     private:
586     ListenerList<ChannelCountListener*> llChannelCountListeners;
587     ListenerList<AudioDeviceCountListener*> llAudioDeviceCountListeners;
588     ListenerList<MidiDeviceCountListener*> llMidiDeviceCountListeners;
589     ListenerList<VoiceCountListener*> llVoiceCountListeners;
590     ListenerList<StreamCountListener*> llStreamCountListeners;
591     ListenerList<BufferFillListener*> llBufferFillListeners;
592 iliev 1541 ListenerList<TotalStreamCountListener*> llTotalStreamCountListeners;
593 iliev 1130 ListenerList<TotalVoiceCountListener*> llTotalVoiceCountListeners;
594     ListenerList<FxSendCountListener*> llFxSendCountListeners;
595    
596     class EventHandler : public EngineChangeListener, public FxSendCountListener {
597     public:
598     void SetSampler(Sampler* pSampler) { this->pSampler = pSampler; }
599    
600     /**
601 schoenebeck 1686 * Invoked when the engine type of the specified sampler
602     * channel is going to be changed soon.
603     * @param ChannelId The numerical ID of the sampler channel
604     */
605     virtual void EngineToBeChanged(int ChannelId);
606    
607     /**
608 iliev 1130 * Invoked when the engine type of the
609     * specified sampler channel is changed.
610     * @param ChannelId The numerical ID of the sampler
611     * channel, which engine type has been changed.
612     */
613     virtual void EngineChanged(int ChannelId);
614    
615     /**
616     * Invoked when the number of effect sends
617     * on the specified sampler channel has changed.
618     * @param ChannelId The numerical ID of the sampler channel.
619     * @param NewCount The new number of effect sends.
620     */
621     virtual void FxSendCountChanged(int ChannelId, int NewCount);
622    
623     private:
624     Sampler* pSampler;
625     } eventHandler;
626 schoenebeck 53 };
627     }
628    
629     #endif // __LS_SAMPLER_H__

  ViewVC Help
Powered by ViewVC