LeviLamina
Loading...
Searching...
No Matches
RequestResourceRange.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Gameface {
6
8public:
9 // RequestResourceRange inner types declare
10 // clang-format off
11 struct RangeInBytes;
12 // clang-format on
13
14 // RequestResourceRange inner types define
15 struct RangeInBytes {
16 public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 8, uint64> start;
20 ::ll::TypedStorage<8, 16, ::std::optional<uint64>> end;
21 // NOLINTEND
22 };
23
24public:
25 // member variables
26 // NOLINTBEGIN
27 ::ll::TypedStorage<8, 24, ::Gameface::RequestResourceRange::RangeInBytes> mRangeInBytes;
28 // NOLINTEND
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCFOLD ::Gameface::RequestResourceRange::RangeInBytes const& getRangeInBytes() const;
34 // NOLINTEND
35};
36
37} // namespace Gameface
Definition RequestResourceRange.h:7
Definition RequestResourceRange.h:15