diff --git a/argument.hpp b/argument.hpp index c314006c1..9d0ab0669 100644 --- a/argument.hpp +++ b/argument.hpp @@ -30,7 +30,7 @@ class ArgumentParser static void usage(char** argv); - static constexpr auto true_string = "true"; + static const std::string true_string; static const std::string empty_string; private: diff --git a/control/argument.cpp b/control/argument.cpp index 2852dee19..d9b832da6 100644 --- a/control/argument.cpp +++ b/control/argument.cpp @@ -82,6 +82,7 @@ const option ArgumentParser::options[] = const char* ArgumentParser::optionstr = "ich?"; +const std::string ArgumentParser::true_string = "true"; const std::string ArgumentParser::empty_string = ""; } diff --git a/cooling-type/argument.cpp b/cooling-type/argument.cpp index f0a78c242..cfd8b25a9 100644 --- a/cooling-type/argument.cpp +++ b/cooling-type/argument.cpp @@ -21,9 +21,9 @@ namespace phosphor { -namespace cooling +namespace fan { -namespace type +namespace util { ArgumentParser::ArgumentParser(int argc, char** argv) @@ -99,6 +99,7 @@ const option ArgumentParser::options[] = const char* ArgumentParser::optionstr = "p:d:e:aw?h"; +const std::string ArgumentParser::true_string = "true"; const std::string ArgumentParser::empty_string = ""; } diff --git a/cooling-type/argument.hpp b/cooling-type/argument.hpp deleted file mode 100644 index cc6489112..000000000 --- a/cooling-type/argument.hpp +++ /dev/null @@ -1,41 +0,0 @@ -#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 diff --git a/cooling-type/main.cpp b/cooling-type/main.cpp index caa4e88c1..288f1b987 100644 --- a/cooling-type/main.cpp +++ b/cooling-type/main.cpp @@ -6,6 +6,7 @@ #include "cooling_type.hpp" using namespace phosphor::cooling::type; +using namespace phosphor::fan::util; using namespace phosphor::logging; int main(int argc, char* argv[])