29 lines
466 B
C++
29 lines
466 B
C++
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the MIT License. See License.txt in the project root for license information.
|
|
|
|
#pragma once
|
|
class Helpers
|
|
{
|
|
public:
|
|
static
|
|
std::wstring
|
|
ReadFileContent(std::wstring file);
|
|
};
|
|
|
|
class TempDirectory
|
|
{
|
|
public:
|
|
|
|
TempDirectory();
|
|
|
|
~TempDirectory();
|
|
|
|
std::filesystem::path path() const
|
|
{
|
|
return m_path;
|
|
}
|
|
|
|
private:
|
|
std::filesystem::path m_path;
|
|
};
|