forked from ibm-openbmc/phosphor-fan-presence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
argument.hpp
46 lines (37 loc) · 1.01 KB
/
argument.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#pragma once
#include <getopt.h>
#include <map>
#include <string>
namespace phosphor
{
namespace fan
{
namespace util
{
/**
* Parses command line arguments.
* This header can be used by all fan applications, while
* the .cpp will need to be implemented by each of them.
*/
class ArgumentParser
{
public:
ArgumentParser(int argc, char** argv);
ArgumentParser() = delete;
ArgumentParser(const ArgumentParser&) = delete;
ArgumentParser(ArgumentParser&&) = default;
ArgumentParser& operator=(const ArgumentParser&) = delete;
ArgumentParser& operator=(ArgumentParser&&) = default;
~ArgumentParser() = default;
const std::string& operator[](const std::string& opt);
static void usage(char** argv);
static const std::string true_string;
static const std::string empty_string;
private:
std::map<const std::string, std::string> arguments;
static const option options[];
static const char* optionstr;
};
} // namespace util
} // namespace fan
} // namespace phosphor