blob: 28e7c99804481379f4ce3a4f8c0c536a9219a8e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include "Utils/IO/DataStream.hpp"
#include <filesystem>
#include <optional>
class DataArchive
{
public:
// TODO more complete impl
static std::optional<InputDataStream> LoadFile(const std::filesystem::path& path);
static std::optional<OutputDataStream> SaveFile(const std::filesystem::path& path);
};
|