aboutsummaryrefslogtreecommitdiff
path: root/include/armnnUtils/Filesystem.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/armnnUtils/Filesystem.hpp')
-rw-r--r--include/armnnUtils/Filesystem.hpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/include/armnnUtils/Filesystem.hpp b/include/armnnUtils/Filesystem.hpp
new file mode 100644
index 0000000000..ba0d97a272
--- /dev/null
+++ b/include/armnnUtils/Filesystem.hpp
@@ -0,0 +1,25 @@
+//
+// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
+// SPDX-License-Identifier: MIT
+//
+
+#pragma once
+
+#if defined(_MSC_VER)
+// ghc includes Windows.h directly, bringing in macros that we don't want (e.g. min/max).
+// By including Windows.h ourselves first (with appropriate options), we prevent this.
+#include <common/include/WindowsWrapper.hpp>
+#endif
+#include <ghc/filesystem.hpp>
+namespace fs = ghc::filesystem;
+
+namespace armnnUtils
+{
+namespace Filesystem
+{
+
+/// Returns a path to a file in the system temporary folder. If the file existed it will be deleted.
+fs::path NamedTempFile(const char* fileName);
+
+}
+}