getVersion()

Retrieves the version of the connector.

Syntax

CxVersion *getVersion() = 0;
  

Return values

A pointer to a character string indicating the version of the connector's application-specific component.

Examples

char * getVersion() 
   
  {
  return (char *) CX_CONNECTOR_VERSIONSTRING;
  }
  

Notes

The connector framework calls the getVersion() method to retrieve the version of the connector.

Important:
The getVersion() method is a virtual method that you must implement for the connector.

See also

See also the description of the CxVersion class.

Copyright IBM Corp. 1997, 2003