From 67cb1e0442a431fd07aa755fc390651d6986bd35 Mon Sep 17 00:00:00 2001 From: Jan Sucan Date: Mon, 27 Jan 2025 11:27:25 +0100 Subject: Prefix class member variables by m_ --- src/options.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/options.h') diff --git a/src/options.h b/src/options.h index 0ea11d8..4aa359a 100644 --- a/src/options.h +++ b/src/options.h @@ -57,10 +57,10 @@ class Create std::filesystem::path getOutFilePath() const; private: - uint32_t buffer_size; - std::filesystem::path in_file_path; - std::filesystem::path base_file_path; - std::filesystem::path out_file_path; + uint32_t m_buffer_size; + std::filesystem::path m_in_file_path; + std::filesystem::path m_base_file_path; + std::filesystem::path m_out_file_path; }; class Restore @@ -75,9 +75,9 @@ class Restore std::filesystem::path getOutFilePath() const; private: - uint32_t buffer_size; - std::filesystem::path diff_file_path; - std::filesystem::path out_file_path; + uint32_t m_buffer_size; + std::filesystem::path m_diff_file_path; + std::filesystem::path m_out_file_path; }; class Parser -- cgit v1.2.3