mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-09-24 06:47:07 +00:00
chore: add abstraction for opening output files to be able to mock it
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
#include <ostream>
|
||||
#include <string>
|
||||
|
||||
class IOutputPath
|
||||
{
|
||||
public:
|
||||
IOutputPath() = default;
|
||||
virtual ~IOutputPath() = default;
|
||||
IOutputPath(const IOutputPath& other) = default;
|
||||
IOutputPath(IOutputPath&& other) noexcept = default;
|
||||
IOutputPath& operator=(const IOutputPath& other) = default;
|
||||
IOutputPath& operator=(IOutputPath&& other) noexcept = default;
|
||||
|
||||
virtual std::unique_ptr<std::ostream> Open(const std::string& fileName) = 0;
|
||||
};
|
||||
Reference in New Issue
Block a user