Lines Matching refs:Version
21 class BASE_EXPORT Version {
25 Version();
27 Version(const Version& other);
28 Version(Version&& other);
30 Version& operator=(const Version& other) = default;
31 Version& operator=(Version&& other) = default;
36 explicit Version(std::string_view version_str);
40 explicit Version(std::vector<uint32_t> components);
42 ~Version();
54 int CompareTo(const Version& other) const;
71 BASE_EXPORT bool operator==(const Version& v1, const Version& v2);
72 BASE_EXPORT bool operator!=(const Version& v1, const Version& v2);
73 BASE_EXPORT bool operator<(const Version& v1, const Version& v2);
74 BASE_EXPORT bool operator<=(const Version& v1, const Version& v2);
75 BASE_EXPORT bool operator>(const Version& v1, const Version& v2);
76 BASE_EXPORT bool operator>=(const Version& v1, const Version& v2);
77 BASE_EXPORT std::ostream& operator<<(std::ostream& stream, const Version& v);