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