mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-01-07 08:47:12 +01:00
15 lines
265 B
C++
15 lines
265 B
C++
#pragma once
|
|
#include <string>
|
|
#include <module.h>
|
|
|
|
namespace options {
|
|
struct CMDLineOptions {
|
|
std::string root;
|
|
bool showConsole;
|
|
};
|
|
|
|
SDRPP_EXPORT CMDLineOptions opts;
|
|
|
|
void loadDefaults();
|
|
bool parse(int argc, char *argv[]);
|
|
} |