blob: 3d93ce610dfdc9d846e2cf243683a52353ad7a28 [file] [log] [blame]
Laurent Carlier749294b2020-06-01 09:03:17 +01001//
Jim Flynn6da6a452020-07-14 14:26:27 +01002// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
Rob Hughesbdee4262020-01-07 17:05:24 +00003// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
Jim Flynnc9631102020-06-24 11:11:20 +01008#include <ghc/filesystem.hpp>
9namespace fs = ghc::filesystem;
10
Rob Hughesbdee4262020-01-07 17:05:24 +000011namespace armnnUtils
12{
13namespace Filesystem
14{
15
Francis Murtagh532a29d2020-06-29 11:50:01 +010016/// Returns a path to a file in the system temporary folder. If the file existed it will be deleted.
17fs::path NamedTempFile(const char* fileName);
Rob Hughesbdee4262020-01-07 17:05:24 +000018
19}
20}