mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-01-09 09:47:12 +01:00
14 lines
200 B
C
14 lines
200 B
C
|
#pragma once
|
||
|
#include <string>
|
||
|
|
||
|
namespace options {
|
||
|
struct CMDLineOptions {
|
||
|
std::string root;
|
||
|
bool help;
|
||
|
};
|
||
|
|
||
|
CMDLineOptions opts;
|
||
|
|
||
|
void parse(char** argv, int argc);
|
||
|
}
|