blob: 3d93ce610dfdc9d846e2cf243683a52353ad7a28 [file] [log] [blame]
//
// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#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);
}
}