summaryrefslogtreecommitdiffstats
path: root/Source/cmWorkingDirectory.h
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2017-03-01 18:40:22 (GMT)
committerBrad King <brad.king@kitware.com>2017-03-06 15:38:20 (GMT)
commit047a5e4d6656f362151b855b34c259708b8419ba (patch)
tree46f04ad99217759e0fcc95e7cc3ab9c109d5d57c /Source/cmWorkingDirectory.h
parent89891bcb9e226cc6216227634d0272adbc080c72 (diff)
downloadCMake-047a5e4d6656f362151b855b34c259708b8419ba.zip
CMake-047a5e4d6656f362151b855b34c259708b8419ba.tar.gz
CMake-047a5e4d6656f362151b855b34c259708b8419ba.tar.bz2
cmWorkingDirectory: add class for changing the workdir
Diffstat (limited to 'Source/cmWorkingDirectory.h')
-rw-r--r--Source/cmWorkingDirectory.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/Source/cmWorkingDirectory.h b/Source/cmWorkingDirectory.h
new file mode 100644
index 0000000..af0fd44
--- /dev/null
+++ b/Source/cmWorkingDirectory.h
@@ -0,0 +1,25 @@
+/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
+ file Copyright.txt or https://cmake.org/licensing for details. */
+#ifndef cmWorkingDirectory_h
+#define cmWorkingDirectory_h
+
+#include <cmConfigure.h> // IWYU pragma: keep
+
+#include <string>
+
+/** \class cmWorkingDirectory
+ * \brief An RAII class to manipulate the working directory.
+ */
+class cmWorkingDirectory
+{
+public:
+ cmWorkingDirectory(std::string const& newdir);
+ ~cmWorkingDirectory();
+
+ void Pop();
+
+private:
+ std::string OldDir;
+};
+
+#endif