diff options
Diffstat (limited to 'api/logic/java/JavaVersion.h')
-rw-r--r-- | api/logic/java/JavaVersion.h | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/api/logic/java/JavaVersion.h b/api/logic/java/JavaVersion.h deleted file mode 100644 index 8589c21a..00000000 --- a/api/logic/java/JavaVersion.h +++ /dev/null @@ -1,50 +0,0 @@ -#pragma once - -#include "multimc_logic_export.h" -#include <QString> - -// NOTE: apparently the GNU C library pollutes the global namespace with these... undef them. -#ifdef major - #undef major -#endif -#ifdef minor - #undef minor -#endif - -class MULTIMC_LOGIC_EXPORT JavaVersion -{ - friend class JavaVersionTest; -public: - JavaVersion() {}; - JavaVersion(const QString & rhs); - - JavaVersion & operator=(const QString & rhs); - - bool operator<(const JavaVersion & rhs); - bool operator==(const JavaVersion & rhs); - bool operator>(const JavaVersion & rhs); - - bool requiresPermGen(); - - QString toString(); - - int major() - { - return m_major; - } - int minor() - { - return m_minor; - } - int security() - { - return m_security; - } -private: - QString m_string; - int m_major = 0; - int m_minor = 0; - int m_security = 0; - bool m_parseable = false; - QString m_prerelease; -}; |