diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-17 01:57:10 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-17 01:57:10 +0300 |
commit | a87f5b2e70e16d41834f5e475112933e8b65d580 (patch) | |
tree | b016001f684346d2bb795bc4b3fedde1d5773c0d /include | |
parent | CommandLine: add MSDN test cases (diff) | |
download | winapi-common-a87f5b2e70e16d41834f5e475112933e8b65d580.tar.gz winapi-common-a87f5b2e70e16d41834f5e475112933e8b65d580.zip |
CommandLine: refactoring
Diffstat (limited to '')
-rw-r--r-- | include/winapi/cmd_line.hpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/include/winapi/cmd_line.hpp b/include/winapi/cmd_line.hpp index c6e8c65..8ea1a92 100644 --- a/include/winapi/cmd_line.hpp +++ b/include/winapi/cmd_line.hpp @@ -23,15 +23,15 @@ public: CommandLine() = default; - CommandLine(const std::string& argv0, const std::vector<std::string>& args = {}) - : argv0(argv0), args(args) {} + explicit CommandLine(const std::string& argv0, const std::vector<std::string>& args = {}) + : m_argv0(argv0), m_args(args) {} - CommandLine(std::string&& argv0, std::vector<std::string>&& args = {}) - : argv0(std::move(argv0)), args(std::move(args)) {} + explicit CommandLine(std::string&& argv0, std::vector<std::string>&& args = {}) + : m_argv0(std::move(argv0)), m_args(std::move(args)) {} - CommandLine(const std::vector<std::string>& argv); + explicit CommandLine(const std::vector<std::string>& argv); - CommandLine(std::vector<std::string>&& argv); + explicit CommandLine(std::vector<std::string>&& argv); static std::string escape(const std::string&); @@ -41,11 +41,11 @@ public: std::string args_to_string() const; - std::string get_argv0() const { return argv0; } + std::string get_argv0() const { return m_argv0; } bool has_args() const { return !get_args().empty(); } - const std::vector<std::string>& get_args() const { return args; } + const std::vector<std::string>& get_args() const { return m_args; } std::vector<std::string> get_argv() const; @@ -58,8 +58,8 @@ private: std::vector<std::string> escape_argv() const; - std::string argv0; - std::vector<std::string> args; + std::string m_argv0; + std::vector<std::string> m_args; }; } // namespace winapi |