LeviLamina
Loading...
Searching...
No Matches
Version.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Scripting {
6
7struct Version {
8public:
9 // member variables
10 // NOLINTBEGIN
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
19 Version& operator=(Version const&);
20 Version();
21
22public:
23 // member functions
24 // NOLINTBEGIN
26
27 MCNAPI bool operator<(::Scripting::Version const& rhs) const;
28
29 MCNAPI bool operator==(::Scripting::Version const& rhs) const;
30
31 MCNAPI bool satisfies(::Scripting::Version const& other, bool strict) const;
32
33 MCNAPI ::std::string toString() const;
34
35 MCNAPI ~Version();
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
41 MCNAPI void* $ctor(::Scripting::Version const&);
42 // NOLINTEND
43
44public:
45 // destructor thunk
46 // NOLINTBEGIN
47 MCNAPI void $dtor();
48 // NOLINTEND
49};
50
51} // namespace Scripting
Definition Version.h:7
MCAPI bool operator<(::Scripting::Version const &rhs) const
MCAPI bool satisfies(::Scripting::Version const &other, bool strict) const
MCAPI Version(::Scripting::Version const &)
MCAPI void * $ctor(::Scripting::Version const &)
MCAPI::std::string toString() const
MCAPI void $dtor()
MCAPI bool operator==(::Scripting::Version const &rhs) const
Definition Alias.h:14