summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qtemporarydir.h
diff options
context:
space:
mode:
authorDavid Faure <faure@kde.org>2011-11-30 18:00:12 +0100
committerQt by Nokia <qt-info@nokia.com>2011-12-02 21:04:34 +0100
commite999c543a052a3301319329f78a8080c3df0669c (patch)
tree61f78ad131bfd32c85f639396f1bada36446c03b /src/corelib/io/qtemporarydir.h
parent4d696d53b074dafc1ecfc1d9cb6fd041464e1a75 (diff)
New class QTemporaryDir.
As discussed on qt5-feedback / development lists. Change-Id: If1733369d12daa29054776ec2cbd78e63679768e Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
Diffstat (limited to 'src/corelib/io/qtemporarydir.h')
-rw-r--r--src/corelib/io/qtemporarydir.h84
1 files changed, 84 insertions, 0 deletions
diff --git a/src/corelib/io/qtemporarydir.h b/src/corelib/io/qtemporarydir.h
new file mode 100644
index 0000000000..96dc18d952
--- /dev/null
+++ b/src/corelib/io/qtemporarydir.h
@@ -0,0 +1,84 @@
+/****************************************************************************
+**
+** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the QtCore module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this
+** file. Please review the following information to ensure the GNU Lesser
+** General Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU General
+** Public License version 3.0 as published by the Free Software Foundation
+** and appearing in the file LICENSE.GPL included in the packaging of this
+** file. Please review the following information to ensure the GNU General
+** Public License version 3.0 requirements will be met:
+** http://www.gnu.org/copyleft/gpl.html.
+**
+** Other Usage
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#ifndef QTEMPORARYDIR_H
+#define QTEMPORARYDIR_H
+
+#include <QtCore/qdir.h>
+
+QT_BEGIN_HEADER
+
+QT_BEGIN_NAMESPACE
+
+QT_MODULE(Core)
+
+#ifndef QT_NO_TEMPORARYFILE
+
+class QTemporaryDirPrivate;
+
+class Q_CORE_EXPORT QTemporaryDir
+{
+public:
+ QTemporaryDir();
+ explicit QTemporaryDir(const QString &templateName);
+ ~QTemporaryDir();
+
+ bool isValid() const;
+
+ bool autoRemove() const;
+ void setAutoRemove(bool b);
+ bool remove();
+
+ QString path() const;
+
+private:
+ QTemporaryDirPrivate* const d_ptr;
+
+ Q_DISABLE_COPY(QTemporaryDir)
+};
+
+#endif // QT_NO_TEMPORARYFILE
+
+QT_END_NAMESPACE
+
+QT_END_HEADER
+
+#endif // QTEMPORARYDIR_H