mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2026-04-19 14:52:43 +00:00
8 lines
96 B
C++
8 lines
96 B
C++
#pragma once
|
|
|
|
namespace dsp {
|
|
struct complex_t {
|
|
float q;
|
|
float i;
|
|
};
|
|
}; |