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();
33 // NOLINTEND
34
35public:
36 // destructor thunk
37 // NOLINTBEGIN
38 MCNAPI void $dtor();
39 // NOLINTEND
40};
Definition TestConfig.h:5
MCAPI ~TestConfig()
MCAPI void $dtor()
Definition Alias.h:14