Introduce AtomicFile#GetTempFilename()

This commit is contained in:
Alexander A. Klimov 2022-08-02 15:47:22 +02:00
parent 0367c9e099
commit d22fdf2a7a
1 changed files with 5 additions and 0 deletions

View File

@ -23,6 +23,11 @@ public:
AtomicFile(String path, int mode);
~AtomicFile();
inline const String& GetTempFilename() const noexcept
{
return m_TempFilename;
}
void Commit();
private: