Added airpyhf_source

This commit is contained in:
Ryzerth
2020-12-15 23:05:11 +01:00
parent d9dcfa4a88
commit 5099c16a12
10 changed files with 371 additions and 226 deletions

7
core/src/options.cpp Normal file
View File

@ -0,0 +1,7 @@
#include <options.h>
namespace options {
void parse(char** argv, int argc) {
}
}

13
core/src/options.h Normal file
View 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);
}