iq data operator

This commit is contained in:
Charles J. Cliffe 2015-09-09 23:46:23 -04:00
parent 43b30367d9
commit fc9ff9c877

View File

@ -71,6 +71,13 @@ public:
}
DemodulatorThreadIQData & operator=(const DemodulatorThreadIQData &other) {
frequency = other.frequency;
sampleRate = other.sampleRate;
data.assign(other.data.begin(), other.data.end());
return *this;
}
~DemodulatorThreadIQData() {
}