aboutsummaryrefslogtreecommitdiff
path: root/src/options.h
diff options
context:
space:
mode:
authorJan Sucan <jan@jansucan.com>2024-12-28 12:17:37 +0100
committerJán Sučan <jan@jansucan.com>2024-12-28 12:47:08 +0100
commit217a6b905d46ee355373b2de60f0f36be828202c (patch)
tree62d5c4c3ab03068672735b73ed947a85bdeb5768 /src/options.h
parent60a76d6ecbd76938cb73120f8c634223a02d503f (diff)
Rename reference file to base file for backup
Diffstat (limited to 'src/options.h')
-rw-r--r--src/options.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/options.h b/src/options.h
index 058ad58..e22b3e3 100644
--- a/src/options.h
+++ b/src/options.h
@@ -64,12 +64,12 @@ class OptionsBackup : public Options
virtual ~OptionsBackup() override = default;
std::filesystem::path getInFilePath() const;
- std::filesystem::path getRefFilePath() const;
+ std::filesystem::path getBaseFilePath() const;
std::filesystem::path getOutFilePath() const;
private:
std::filesystem::path in_file_path;
- std::filesystem::path ref_file_path;
+ std::filesystem::path base_file_path;
std::filesystem::path out_file_path;
};