GetProductVersion

Description

Returns the current version of the product.

Syntax

Perl

$prodinfo->GetProductVersion(); 
Identifier
Description
prodinfo
A CQProductInfo object.
Return value
A String containing the product version.

Example

Perl

use CQPerlExt;



my $cqobject = CQClearQuest::Build();

my $prodinfo = $cqobject->CreateProductInfo();

print "ProductVersion      = '".$prodinfo->GetProductVersion()."'\n";

CQClearQuest::Unbuild($cqobject); 

Commentaire