Creates a version object from major, minor, and point numbers or from a version string.
Syntax
CxVersion(int major, int minor, int point); CxVersion(char * verString);
Parameters
Return values
None.
Notes
Each business object definition refers to an instance of the CxVersion class to set its version. The version to which a BusinessObject constructor refers is the version of the business object definition. A business object has the same version as its business object definition.
Examples
CxVersion * CurrentVersion = new CxVersion(LATEST, LATEST, LATEST); . . . myVersion = new CxVersion("2.0.3");
See also