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