aboutsummaryrefslogtreecommitdiff
path: root/src/options.h
diff options
context:
space:
mode:
authorJan Sucan <jan@jansucan.com>2025-01-27 11:27:25 +0100
committerJán Sučan <jan@jansucan.com>2025-01-27 15:22:36 +0100
commit67cb1e0442a431fd07aa755fc390651d6986bd35 (patch)
tree6b35429c3903c0e661fd5c6498c4b7c9afde50f2 /src/options.h
parent7b2955b20ba51e27a72a881bcf7abdec73d7942c (diff)
Prefix class member variables by m_
Diffstat (limited to 'src/options.h')
-rw-r--r--src/options.h14
1 files changed, 7 insertions, 7 deletions
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