Files
Project_CTR/deps/libnintendo-n3ds/include/ntd/n3ds/ExeFsSnapshotGenerator.h
T
2022-04-16 18:27:14 +08:00

14 lines
345 B
C++

#pragma once
#include <tc/io/VirtualFileSystem.h>
namespace ntd { namespace n3ds {
struct ExeFsSnapshotGenerator : public tc::io::VirtualFileSystem::FileSystemSnapshot
{
public:
ExeFsSnapshotGenerator(const std::shared_ptr<tc::io::IStream>& stream, bool verify_hashes = true);
private:
ExeFsSnapshotGenerator();
};
}} // namespace ntd::n3ds