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();
27
28public:
29 // member functions
30 // NOLINTBEGIN
31 MCNAPI TestConfig(::TestConfig const&);
32
33 MCNAPI explicit TestConfig(::std::string const& fileName);
34
35 MCNAPI ::TestConfig& operator=(::TestConfig&&);
36
37 MCNAPI ~TestConfig();
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCNAPI void* $ctor(::TestConfig const&);
44
45 MCNAPI void* $ctor(::std::string const& fileName);
46 // NOLINTEND
47
48public:
49 // destructor thunk
50 // NOLINTBEGIN
51 MCNAPI void $dtor();
52 // NOLINTEND
53};
MCAPI ~TestConfig()
MCAPI void * $ctor(::TestConfig const &)
MCAPI TestConfig(::TestConfig const &)
MCAPI void $dtor()
MCAPI void * $ctor(::std::string const &fileName)
MCAPI::TestConfig & operator=(::TestConfig &&)
MCAPI TestConfig(::std::string const &fileName)
Definition Alias.h:14