From fef0295a8d87754e491dcf133ea927b5c4d56303 Mon Sep 17 00:00:00 2001 From: Brandon Wyman Date: Fri, 31 Mar 2017 18:13:21 -0500 Subject: Fill in shell functions/files for cooling type. Change-Id: I8d18d3141e955adeffdd8122ebb17549c88edd77 Signed-off-by: Brandon Wyman --- cooling-type/argument.hpp | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 cooling-type/argument.hpp (limited to 'cooling-type/argument.hpp') diff --git a/cooling-type/argument.hpp b/cooling-type/argument.hpp new file mode 100644 index 0000000..cc64891 --- /dev/null +++ b/cooling-type/argument.hpp @@ -0,0 +1,41 @@ +#pragma once + +#include +#include +#include + +namespace phosphor +{ +namespace cooling +{ +namespace type +{ + +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 constexpr auto true_string = "true"; + static const std::string empty_string; + + private: + std::map arguments; + + static const option options[]; + static const char* optionstr; +}; + +} +} +} +// vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4 -- cgit v1.2.1