00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef _AFLIBMIXERITEM_H_
00024 #define _AFLIBMIXERITEM_H_
00025
00026
00027 #ifdef HAVE_CONFIG_H
00028 #include <config.h>
00029 #endif
00030
00031
00036 class aflibMixerItem {
00037
00038 public:
00039
00040 aflibMixerItem();
00041
00042 aflibMixerItem(
00043 int input,
00044 int in_chan,
00045 int out_chan,
00046 int amp);
00047
00048 ~aflibMixerItem();
00049
00050 void
00051 setInput(int input);
00052
00053 int
00054 getInput() const;
00055
00056 void
00057 setInChannel(int in_chan);
00058
00059 int
00060 getInChannel() const;
00061
00062 void
00063 setOutChannel(int out_chan);
00064
00065 int
00066 getOutChannel() const;
00067
00068 void
00069 setAmplitude(int amp);
00070
00071 int
00072 getAmplitude() const;
00073
00074 bool
00075 operator < (const aflibMixerItem& item) const;
00076
00077 private:
00078
00079 int _input;
00080 int _in_chan;
00081 int _out_chan;
00082 int _amp;
00083
00084 };
00085
00086
00087 #endif