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 ::Scripting::Version& operator=(::Scripting::Version&&);
30
31 MCNAPI bool operator==(::Scripting::Version const& rhs) const;
32
33 MCNAPI bool satisfies(::Scripting::Version const& other, bool strict) const;
34
35 MCNAPI ::std::string toString() const;
36
37 MCNAPI ~Version();
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCNAPI void* $ctor(::Scripting::Version const&);
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49 MCNAPI void $dtor();
50 // NOLINTEND
51};
52
53} // 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
MCAPI::Scripting::Version & operator=(::Scripting::Version &&)
Definition Alias.h:14