diff options
| author | Stefan Boberg <[email protected]> | 2021-05-11 21:54:35 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-05-11 21:54:35 +0200 |
| commit | 57384321386f01f6e0f80e3984f08c05a0bb7a42 (patch) | |
| tree | d63d45f885478f23967135788f8a434a596d0b8d /zenserver/projectstore.h | |
| parent | Added paths as context to I/O error exception messages (diff) | |
| download | zen-57384321386f01f6e0f80e3984f08c05a0bb7a42.tar.xz zen-57384321386f01f6e0f80e3984f08c05a0bb7a42.zip | |
Implemented basic support for marshaling attachments out-of-band with the package payload
Currently supported in project store but will also be used for the structured cache
Currently, cleanup is missing. Ultimately the intent is that the file used for marshaling will simply be moved into place.
Diffstat (limited to 'zenserver/projectstore.h')
| -rw-r--r-- | zenserver/projectstore.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/zenserver/projectstore.h b/zenserver/projectstore.h index 4ad0e42e0..0b41b837b 100644 --- a/zenserver/projectstore.h +++ b/zenserver/projectstore.h @@ -88,6 +88,7 @@ public: const std::string& OplogId() const { return m_OplogId; } const std::wstring& TempDir() const { return m_TempPath.native(); } + const std::filesystem::path& TempPath() const { return m_TempPath; } spdlog::logger& Log() { return m_OuterProject->Log(); } |