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 explicit FilterInput(::std::string const& s);
26
27 MCNAPI ::FilterInput& operator=(::FilterInput const&);
28
29 MCNAPI ::FilterInput& operator=(::FilterInput&&);
30
31 MCNAPI ~FilterInput();
32 // NOLINTEND
33
34public:
35 // constructor thunks
36 // NOLINTBEGIN
37 MCNAPI void* $ctor(int i);
38
39 MCNAPI void* $ctor(::std::string const& s);
40 // NOLINTEND
41
42public:
43 // destructor thunk
44 // NOLINTBEGIN
45 MCNAPI void $dtor();
46 // NOLINTEND
47};
Definition FilterInput.h:5
MCAPI void $dtor()
MCAPI::FilterInput & operator=(::FilterInput &&)
MCAPI::FilterInput & operator=(::FilterInput const &)
MCAPI ~FilterInput()
MCAPI void * $ctor(::std::string const &s)
MCAPI void * $ctor(int i)
MCAPI FilterInput(int i)
MCAPI FilterInput(::std::string const &s)
Definition Alias.h:14