LeviLamina
Loading...
Searching...
No Matches
MinEngineVersion.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class SemVersion;
8// clang-format on
9
11public:
12 // member variables
13 // NOLINTBEGIN
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 MinEngineVersion& operator=(MinEngineVersion const&);
23
24public:
25 // member functions
26 // NOLINTBEGIN
28
29 MCAPI explicit MinEngineVersion(::SemVersion const& version);
30
31 MCAPI ::MinEngineVersion& operator=(::MinEngineVersion&&);
32
33 MCAPI ~MinEngineVersion();
34 // NOLINTEND
35
36public:
37 // static functions
38 // NOLINTBEGIN
39 MCAPI static ::MinEngineVersion fromString(::std::string const& string);
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCAPI void* $ctor(::MinEngineVersion const&);
46
47 MCAPI void* $ctor(::SemVersion const& version);
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53 MCFOLD void $dtor();
54 // NOLINTEND
55};
Definition MinEngineVersion.h:10
Definition SemVersion.h:16
Definition Alias.h:14