Home | History | Annotate | Download | only in base

Lines Matching refs:Version

16 // Version represents a dotted version number, like "1.2.3.4", supporting
19 class BASE_API Version {
21 // Exposed only so that a Version can be stored in STL containers;
22 // any call to the methods below on a default-constructed Version
24 Version();
26 ~Version();
28 // The version string must be made up of 1 or more uint16's separated
30 // Caller is responsible for freeing the Version object once done.
31 static Version* GetVersionFromString(const std::string& version_str);
33 // Creates a copy of this version. Caller takes ownership.
34 Version* Clone() const;
36 bool Equals(const Version& other) const;
39 int CompareTo(const Version& other) const;
41 // Return the string representation of this version.