PhaseManagementConfig.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 _PhaseManagementConfig_
00023 #define _PhaseManagementConfig_
00024 #include <typeinfo>
00025
00026 #include "EPhaseGeneration.hxx"
00027 #include "ProcessingConfig.hxx"
00028
00029 namespace CLAM {
00030
00034 class PhaseManagementConfig:public ProcessingConfig
00035 {
00036 DYNAMIC_TYPE_USING_INTERFACE (PhaseManagementConfig,3,ProcessingConfig);
00037 DYN_ATTRIBUTE(0,public,TSize,MaxSines);
00038 DYN_ATTRIBUTE(1,public,TData,SamplingRate);
00039 DYN_ATTRIBUTE(2,public,EPhaseGeneration,Type);
00040 public:
00041 void DefaultInit();
00042 void DefaultValues();
00043 };
00044
00045 }
00046
00047 #endif
00048