LeviLamina
Loading...
Searching...
No Matches
TOCReader.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/platform/Result.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Bedrock { struct ImplCtor; }
11namespace Core { class File; }
12namespace Core { class Path; }
13// clang-format on
14
15namespace Bedrock::Resources::Archive {
16
18: public ::Bedrock::ImplBase<::Bedrock::Resources::Archive::TOCReader, ::Bedrock::ImplCtor(::Core::File)> {
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 virtual bool isValid() const = 0;
23
24 virtual ::Bedrock::Result<void> getAsset(::Core::Path const&, ::std::string&) const = 0;
25
26 virtual bool hasAsset(::Core::Path const&) const = 0;
27
28 virtual ~TOCReader() /*override*/ = default;
29 // NOLINTEND
30
31public:
32 // virtual function thunks
33 // NOLINTBEGIN
34
35 // NOLINTEND
36};
37
38} // namespace Bedrock::Resources::Archive
Definition _HeaderOutputPredefine.h:260
Definition File.h:22
Definition Path.h:17
Definition ImplCtor.h:7