mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-02-11 00:18:43 +01:00
15 lines
344 B
C++
15 lines
344 B
C++
#pragma once
|
|
#include <config.h>
|
|
#include <module.h>
|
|
#include <scripting.h>
|
|
#include <module.h>
|
|
|
|
namespace core {
|
|
SDRPP_EXPORT ConfigManager configManager;
|
|
SDRPP_EXPORT ScriptManager scriptManager;
|
|
SDRPP_EXPORT ModuleManager moduleManager;
|
|
|
|
void setInputSampleRate(double samplerate);
|
|
};
|
|
|
|
int sdrpp_main(int argc, char *argv[]); |