mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2026-01-22 05:25:37 -05:00
28 lines
557 B
C++
28 lines
557 B
C++
#include "Modem.h"
|
|
|
|
ModemFactoryList Modem::modemFactories;
|
|
|
|
void Modem::addModemFactory(std::string modemName, Modem *factorySingle) {
|
|
modemFactories[modemName] = factorySingle;
|
|
}
|
|
|
|
ModemFactoryList Modem::getFactories() {
|
|
return modemFactories;
|
|
}
|
|
|
|
Modem *Modem::factory() {
|
|
return nullptr;
|
|
}
|
|
|
|
ModemKit *Modem::buildKit(long long sampleRate, int audioSampleRate) {
|
|
return nullptr;
|
|
}
|
|
|
|
void Modem::disposeKit(ModemKit *kit) {
|
|
return;
|
|
}
|
|
|
|
void Modem::demodulate(ModemKit *kit, ModemIQData *input, AudioThreadInput *audioOut) {
|
|
return;
|
|
}
|