Home | History | Annotate | Download | only in base

Lines Matching refs:Version

13 class Version {
15 // The version string must be made up of 1 or more uint16's separated
17 // Caller is responsible for freeing the Version object once done.
18 static Version* GetVersionFromString(const std::wstring& version_str);
19 static Version* GetVersionFromString(const std::string& version_str);
21 ~Version() {}
23 bool Equals(const Version& other) const;
26 int CompareTo(const Version& other) const;
28 // Return the string representation of this version.
34 Version() {}