SDRPlusPlus/core/src/core.h

15 lines
348 B
C
Raw Normal View History

2020-09-19 12:48:34 +02:00
#pragma once
2020-09-24 19:36:57 +02:00
#include <config.h>
2020-12-22 20:00:51 +01:00
#include <module.h>
#include <module.h>
#include <module_com.h>
2020-09-24 19:36:57 +02:00
namespace core {
SDRPP_EXPORT ConfigManager configManager;
2020-12-08 04:36:37 +01:00
SDRPP_EXPORT ModuleManager moduleManager;
SDRPP_EXPORT ModuleComManager modComManager;
2020-10-02 01:44:18 +02:00
void setInputSampleRate(double samplerate);
2020-09-24 19:36:57 +02:00
};
2020-09-19 12:48:34 +02:00
int sdrpp_main(int argc, char* argv[]);