summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/CachedBlob.h
blob: f99ad552bbbeb4f5e2d550b002c24a13c41546c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2025 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include <memory>

#include "DiscIO/Blob.h"

namespace DiscIO
{

std::unique_ptr<BlobReader> CreateCachedBlobReader(std::unique_ptr<BlobReader> reader);
std::unique_ptr<BlobReader> CreateScrubbingCachedBlobReader(std::unique_ptr<BlobReader> reader);

}  // namespace DiscIO