LeviLamina
Loading...
Searching...
No Matches
ByteQueue.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace DataStructures {
6
7class ByteQueue {
8public:
9 // member variables
10 // NOLINTBEGIN
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
19 ByteQueue& operator=(ByteQueue const&);
20 ByteQueue(ByteQueue const&);
21 ByteQueue();
22
23public:
24 // member functions
25 // NOLINTBEGIN
26 MCAPI void WriteBytes(char const* in, uint length, char const* file, uint line);
27 // NOLINTEND
28};
29
30} // namespace DataStructures
Definition ByteQueue.h:7
Definition Alias.h:14