diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-11-04 23:56:06 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-11-09 00:34:26 +0100 |
| commit | 06a52e28b747983c99211469bf13a7c19e9d1644 (patch) | |
| tree | 8016f2bbfb01452fdb4444d2e49f34892e2e14ba /src/types.h | |
| parent | ca23cd312a0f5f5ee5aa8665b2a2346d6f990b5c (diff) | |
Allow saving of CPL/PKL with original filenames.v1.10.38
Diffstat (limited to 'src/types.h')
| -rw-r--r-- | src/types.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/types.h b/src/types.h index 675c0a85..e0b1f064 100644 --- a/src/types.h +++ b/src/types.h @@ -363,6 +363,15 @@ private: bool operator== (Luminance const& a, Luminance const& b); +enum class Filenames +{ + /* Use the original filenames for PKL and CPL, where available */ + ORIGINAL, + /* Use new filenames for CPL and PKL, made using the given NameFormat */ + NEW +}; + + } |
