1 |
|
|
|
2 |
|
|
/*************************************** |
3 |
|
|
Auteur : Pierre Aubert |
4 |
|
|
Mail : pierre.aubert@lapp.in2p3.fr |
5 |
|
|
Licence : CeCILL-C |
6 |
|
|
****************************************/ |
7 |
|
|
|
8 |
|
|
#include "phoenix_assert.h" |
9 |
|
|
#include "phoenix_check.h" |
10 |
|
|
#include "OptionParser.h" |
11 |
|
|
|
12 |
|
|
///Create the OptionParser of this program |
13 |
|
|
/** @return OptionParser of this program |
14 |
|
|
*/ |
15 |
|
2 |
OptionParser createOptionParser(){ |
16 |
✓✓ |
4 |
OptionParser parser(true, "1.0.0"); |
17 |
✓✓✓✓
|
2 |
parser.addOption("input", "i", OptionType::FILENAME, true, "Required option"); |
18 |
|
2 |
return parser; |
19 |
|
|
} |
20 |
|
|
|
21 |
|
2 |
int main(int argc, char** argv){ |
22 |
✓ |
4 |
OptionParser parser = createOptionParser(); |
23 |
✓ |
2 |
parser.parseArgument(argc, argv); |
24 |
|
|
|
25 |
✓ |
2 |
const OptionMode & defaultMode = parser.getDefaultMode(); |
26 |
✓ |
2 |
std::string inputFile(""); |
27 |
✓✓ |
2 |
defaultMode.getValue(inputFile, "input"); |
28 |
|
|
// std::cout << "input = '" << inputFile << "'" << std::endl; |
29 |
|
|
|
30 |
✓✓✓✓
|
2 |
phoenix_assert(inputFile == "fileName.txt"); |
31 |
|
2 |
return 0; |
32 |
|
|
} |
33 |
|
|
|
34 |
|
|
|