SDRPlusPlus/core/src/options.h
2021-02-06 21:28:27 +01:00

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[]);
}