MonoAudioFileReaderConfig.hxx
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef __MONOAUDIOFILEREADERCONFIG__
00023 #define __MONOAUDIOFILEREADERCONFIG__
00024 #include <typeinfo>
00025
00026 #include "ProcessingConfig.hxx"
00027 #include "AudioInFilename.hxx"
00028 #include "DataTypes.hxx"
00029
00030 namespace CLAM
00031 {
00038 class MonoAudioFileReaderConfig
00039 : public ProcessingConfig
00040 {
00041 DYNAMIC_TYPE_USING_INTERFACE( MonoAudioFileReaderConfig, 3, ProcessingConfig );
00042
00046 DYN_ATTRIBUTE( 0, public, AudioInFilename, SourceFile );
00047
00056 DYN_ATTRIBUTE( 1, public, TIndex, SelectedChannel );
00057 DYN_ATTRIBUTE( 2, public, bool, Loop );
00058
00059 ~MonoAudioFileReaderConfig();
00060 protected:
00061 void DefaultInit();
00062 };
00063
00064 }
00065
00066 #endif // MonoAudioFileReaderConfig.hxx
00067