mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-19 15:52:53 +00:00
17 lines
323 B
C++
17 lines
323 B
C++
#pragma once
|
|
|
|
#include "IOutputPath.h"
|
|
|
|
#include <filesystem>
|
|
|
|
class OutputPathFilesystem final : public IOutputPath
|
|
{
|
|
public:
|
|
explicit OutputPathFilesystem(const std::filesystem::path& path);
|
|
|
|
std::unique_ptr<std::ostream> Open(const std::string& fileName) override;
|
|
|
|
private:
|
|
std::filesystem::path m_path;
|
|
};
|