15 lines
211 B
C++
15 lines
211 B
C++
#ifndef cwDspTypes_h
|
|
#define cwDspTypes_h
|
|
|
|
namespace cw
|
|
{
|
|
namespace dsp
|
|
{
|
|
typedef float real_t;
|
|
typedef float sample_t;
|
|
typedef double fd_real_t;
|
|
typedef double srate_t;
|
|
}
|
|
}
|
|
#endif
|