mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-06-26 04:17:50 +02:00
Added airpyhf_source
This commit is contained in:
7
core/src/options.cpp
Normal file
7
core/src/options.cpp
Normal file
@ -0,0 +1,7 @@
|
||||
#include <options.h>
|
||||
|
||||
namespace options {
|
||||
void parse(char** argv, int argc) {
|
||||
|
||||
}
|
||||
}
|
13
core/src/options.h
Normal file
13
core/src/options.h
Normal file
@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
#include <string>
|
||||
|
||||
namespace options {
|
||||
struct CMDLineOptions {
|
||||
std::string root;
|
||||
bool help;
|
||||
};
|
||||
|
||||
CMDLineOptions opts;
|
||||
|
||||
void parse(char** argv, int argc);
|
||||
}
|
Reference in New Issue
Block a user