LeviLamina
Loading...
Searching...
No Matches
CpuRingBufferAllocation_Buffer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Core {
6
8public:
9 // CpuRingBufferAllocation_Buffer inner types declare
10 // clang-format off
11 class Buffer;
12 // clang-format on
13
14 // CpuRingBufferAllocation_Buffer inner types define
15 class Buffer {
16 public:
17 // member variables
18 // NOLINTBEGIN
20 // NOLINTEND
21
22 public:
23 // prevent constructor by default
24 Buffer& operator=(Buffer const&);
25 Buffer(Buffer const&);
26 Buffer();
27 };
28};
29
30} // namespace Core
Definition CpuRingBufferAllocation_Buffer.h:15
Definition CpuRingBufferAllocation_Buffer.h:7
Definition Alias.h:14