mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-12-28 11:58:31 +01:00
16 lines
395 B
C++
16 lines
395 B
C++
#pragma once
|
|
#include <config.h>
|
|
#include <module.h>
|
|
#include <module_com.h>
|
|
#include "command_args.h"
|
|
|
|
namespace core {
|
|
SDRPP_EXPORT ConfigManager configManager;
|
|
SDRPP_EXPORT ModuleManager moduleManager;
|
|
SDRPP_EXPORT ModuleComManager modComManager;
|
|
SDRPP_EXPORT CommandArgsParser args;
|
|
|
|
void setInputSampleRate(double samplerate);
|
|
};
|
|
|
|
int sdrpp_main(int argc, char* argv[]); |