Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/mirall/temporarydir.h')
-rw-r--r--src/mirall/temporarydir.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/mirall/temporarydir.h b/src/mirall/temporarydir.h
new file mode 100644
index 000000000..c4b414f12
--- /dev/null
+++ b/src/mirall/temporarydir.h
@@ -0,0 +1,24 @@
+
+#ifndef MIRALL_TEMPORARYDIR_H
+#define MIRALL_TEMPORARYDIR_H
+
+#include <QString>
+
+namespace Mirall
+{
+
+class TemporaryDir
+{
+public:
+ TemporaryDir();
+ ~TemporaryDir();
+
+ QString path() const;
+
+private:
+ QString _path;
+};
+
+}
+
+#endif