|
|
|
Location:
e32cmn.h
class TVersion;
Contains version information.
A version is defined by a set of three numbers:
1. the major version number, ranging from 0 to 127, inclusive
2. the minor version number, ranging from 0 to 99 inclusive
3. the build number, ranging from 0 to 32767 inclusive.
The class provides a constructor for setting all three numbers. It also provides a member function to build a character representation of this information in a TVersionName descriptor.
Defined in TVersion:
Name(), TVersion(), TVersion(), iBuild, iMajor, iMinor
IMPORT_C TVersion(TInt aMajor, TInt aMinor, TInt aBuild);
Constructor for version type.
|
IMPORT_C TVersionName Name() const;
Converts a version type to a text string.
The string is of the form X.YY(Z) where X is major version number, Y is minor and Z is build number.
|
TInt16 iBuild;
The build number.