blob: 0d29a7558d7e6c87841b68974b5e005887c7a038 [file] [log] [blame]
//
// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#if !defined(ARMNN_DISABLE_FILESYSTEM)
#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);
} // namespace armnnUtils
} // namespace Filesystem
#endif // !defined(ARMNN_DISABLE_FILESYSTEM)