LeviLamina
Loading...
Searching...
No Matches
QueueItem.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace AgentComponents::Actions {
6
7struct QueueItem {
8public:
9 // member variables
10 // NOLINTBEGIN
14 // NOLINTEND
15
16public:
17 // prevent constructor by default
18 QueueItem& operator=(QueueItem const&);
19 QueueItem();
20
21public:
22 // member functions
23 // NOLINTBEGIN
24 MCAPI QueueItem(::AgentComponents::Actions::QueueItem const&);
25
26 MCAPI ~QueueItem();
27 // NOLINTEND
28
29public:
30 // constructor thunks
31 // NOLINTBEGIN
32 MCAPI void* $ctor(::AgentComponents::Actions::QueueItem const&);
33 // NOLINTEND
34
35public:
36 // destructor thunk
37 // NOLINTBEGIN
38 MCAPI void $dtor();
39 // NOLINTEND
40};
41
42} // namespace AgentComponents::Actions
Definition QueueItem.h:7
Definition Alias.h:14