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