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