diff options
Diffstat (limited to 'src/options.h')
| -rw-r--r-- | src/options.h | 14 |
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 |
