LeviLamina
Loading...
Searching...
No Matches
TagUpdateToken.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<8, 16, ::std::weak_ptr<::std::atomic<int>>> mTokenCount;
10 // NOLINTEND
11
12public:
13 // prevent constructor by default
15
16public:
17 // member functions
18 // NOLINTBEGIN
19 MCAPI explicit TagUpdateToken(::std::weak_ptr<::std::atomic<int>> tokenCount);
20
21 MCAPI ~TagUpdateToken();
22 // NOLINTEND
23
24public:
25 // constructor thunks
26 // NOLINTBEGIN
27 MCAPI void* $ctor(::std::weak_ptr<::std::atomic<int>> tokenCount);
28 // NOLINTEND
29
30public:
31 // destructor thunk
32 // NOLINTBEGIN
33 MCAPI void $dtor();
34 // NOLINTEND
35};
Definition TagUpdateToken.h:5