CWindowFunction.h
Go to the documentation of this file.00001
00002 #ifndef CWindowFunction_H
00003 #define CWindowFunction_H
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039 #ifndef __cplusplus
00040 #error This is a C++ include file and cannot be used from plain C
00041 #endif
00042
00043 #include <iostream>
00044 #include <string>
00045 #include <vector>
00049 #ifndef WITHOUT_ACS
00050 #include <almaEnumerations_IFC.h>
00051 #else
00052
00053
00054 namespace WindowFunctionMod
00055 {
00058
00059 const char *const revision = "-1";
00060 const int version = 1;
00061
00062 enum WindowFunction
00063 {
00064 UNIFORM
00065 ,
00066 HANNING
00067 ,
00068 HAMMING
00069 ,
00070 BARTLETT
00071 ,
00072 BLACKMANN
00073 ,
00074 BLACKMANN_HARRIS
00075 ,
00076 WELCH
00078 };
00079 typedef WindowFunction &WindowFunction_out;
00080 }
00081 #endif
00082
00083 namespace WindowFunctionMod {
00084 std::ostream & operator << ( std::ostream & out, const WindowFunction& value);
00085 std::istream & operator >> ( std::istream & in , WindowFunction& value );
00086 }
00087
00092 class CWindowFunction {
00093 public:
00094
00099 static const std::string& sUNIFORM;
00101 static const std::string& sHANNING;
00103 static const std::string& sHAMMING;
00105 static const std::string& sBARTLETT;
00107 static const std::string& sBLACKMANN;
00109 static const std::string& sBLACKMANN_HARRIS;
00111 static const std::string& sWELCH;
00118 static int version() ;
00119
00120
00126 static std::string revision() ;
00127
00128
00133 static unsigned int size() ;
00134
00135
00141 static std::string name(const WindowFunctionMod::WindowFunction& e);
00142
00146 static std::string toString(const WindowFunctionMod::WindowFunction& f) { return name(f); }
00147
00153 static const std::vector<std::string> names();
00154
00155
00156
00157 static WindowFunctionMod::WindowFunction newWindowFunction(const std::string& name);
00158
00164 static WindowFunctionMod::WindowFunction literal(const std::string& name);
00165
00171 static WindowFunctionMod::WindowFunction from_int(unsigned int i);
00172
00173
00174 private:
00175
00176 CWindowFunction();
00177 CWindowFunction(const CWindowFunction&);
00178 CWindowFunction& operator=(const CWindowFunction&);
00179
00180 static std::string badString(const std::string& name) ;
00181 static std::string badInt(unsigned int i) ;
00182
00183 };
00184
00185 #endif