LeviLamina
Loading...
Searching...
No Matches
SpScUnboundedQueue.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace bx { struct AllocatorI; }
8// clang-format on
9
10namespace bx {
11
13public:
14 // SpScUnboundedQueue inner types declare
15 // clang-format off
16 struct Node;
17 // clang-format on
18
19 // SpScUnboundedQueue inner types define
20 struct Node {
21 public:
22 // member variables
23 // NOLINTBEGIN
24 ::ll::TypedStorage<8, 8, void*> m_ptr;
25 ::ll::TypedStorage<8, 8, ::bx::SpScUnboundedQueue::Node*> m_next;
26 // NOLINTEND
27 };
28
29public:
30 // member variables
31 // NOLINTBEGIN
32 ::ll::TypedStorage<8, 8, ::bx::AllocatorI*> m_allocator;
33 ::ll::TypedStorage<8, 8, ::bx::SpScUnboundedQueue::Node*> m_first;
34 ::ll::TypedStorage<8, 8, ::bx::SpScUnboundedQueue::Node*> m_divider;
35 ::ll::TypedStorage<8, 8, ::bx::SpScUnboundedQueue::Node*> m_last;
36 // NOLINTEND
37
38public:
39 // member functions
40 // NOLINTBEGIN
41 MCAPI ~SpScUnboundedQueue();
42 // NOLINTEND
43
44public:
45 // destructor thunk
46 // NOLINTBEGIN
47 MCAPI void $dtor();
48 // NOLINTEND
49};
50
51} // namespace bx
Definition SpScUnboundedQueue.h:7
Definition AllocatorI.h:7
Definition SpScUnboundedQueue.h:15