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&);
17
18public:
19 // member functions
20 // NOLINTBEGIN
22
23 MCAPI TrimPattern(::TrimPattern const&);
24
25 MCAPI ~TrimPattern();
26 // NOLINTEND
27
28public:
29 // constructor thunks
30 // NOLINTBEGIN
31 MCAPI void* $ctor(::TrimPattern&&);
32
33 MCFOLD void* $ctor(::TrimPattern const&);
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39 MCFOLD void $dtor();
40 // NOLINTEND
41};
Definition TrimPattern.h:5
Definition Alias.h:14