aboutsummaryrefslogtreecommitdiffstats
path: root/util/system/tempfile.h
diff options
context:
space:
mode:
authorAnton Samokhvalov <pg83@yandex.ru>2022-02-10 16:45:15 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:45:15 +0300
commit72cb13b4aff9bc9cf22e49251bc8fd143f82538f (patch)
treeda2c34829458c7d4e74bdfbdf85dff449e9e7fb8 /util/system/tempfile.h
parent778e51ba091dc39e7b7fcab2b9cf4dbedfb6f2b5 (diff)
downloadydb-72cb13b4aff9bc9cf22e49251bc8fd143f82538f.tar.gz
Restoring authorship annotation for Anton Samokhvalov <pg83@yandex.ru>. Commit 1 of 2.
Diffstat (limited to 'util/system/tempfile.h')
-rw-r--r--util/system/tempfile.h44
1 files changed, 22 insertions, 22 deletions
diff --git a/util/system/tempfile.h b/util/system/tempfile.h
index de249c129d..47d69df737 100644
--- a/util/system/tempfile.h
+++ b/util/system/tempfile.h
@@ -1,32 +1,32 @@
#pragma once
-
-#include "fs.h"
-#include "file.h"
-
+
+#include "fs.h"
+#include "file.h"
+
#include <util/folder/path.h>
#include <util/generic/string.h>
-
-class TTempFile {
-public:
+
+class TTempFile {
+public:
inline TTempFile(const TString& fname)
- : Name_(fname)
- {
- }
-
+ : Name_(fname)
+ {
+ }
+
inline ~TTempFile() {
NFs::Remove(Name());
- }
-
+ }
+
inline const TString& Name() const noexcept {
- return Name_;
- }
-
-private:
+ return Name_;
+ }
+
+private:
const TString Name_;
-};
-
-class TTempFileHandle: public TTempFile, public TFile {
-public:
+};
+
+class TTempFileHandle: public TTempFile, public TFile {
+public:
TTempFileHandle();
TTempFileHandle(const TString& fname);
@@ -35,7 +35,7 @@ public:
private:
TFile CreateFile() const;
-};
+};
/*
* Creates a unique temporary filename in specified directory.