![]() |
UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
|
#include <PacketView.h>
Public Member Functions | |
| FPacketDataView (const uint8 *InData, int32 InCountBits, ECountUnits::BitType) | |
| FPacketDataView (const uint8 *InData, int32 InCountBytes, ECountUnits::ByteType) | |
| const uint8 * | GetData () const |
| uint8 * | GetMutableData () const |
| int32 | NumBits () const |
| int32 | NumBytes () const |
Friends | |
| struct | FReceivedPacketView |
Represent a restricted view of packet data, with bit-based size, allowing data to be reassigned to point elsewhere, but not allowing the data being pointed to, to be modified.
|
inline |
Constructs a view of packet data with bit-based size.
| InData | Pointer to the packet data |
| InCountBits | The packet size, in bits |
| CountUnits | Whether or not the size is specified in bits (ECountUnits::Bits) or bytes (ECountUnits::Bytes) |
|
inline |
Constructs a view of packet data with byte-based size.
| InData | Pointer to the packet data |
| InCountBytes | The packet size, in bytes |
| CountUnits | Whether or not the size is specified in bits (ECountUnits::Bits) or bytes (ECountUnits::Bytes) |
|
inline |
|
inline |
|
inline |
|
inline |
|
friend |