GetProductVersion

Description

Returns the current version of the product.

Syntaxe

Perl

$prodinfo->GetProductVersion(); 
Identificateur
Description
prodinfo
A CQProductInfo object.
Valeur renvoyée
A String containing the product version.

Exemple

Perl

use CQPerlExt;



my $cqobject = CQClearQuest::Build();

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

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

CQClearQuest::Unbuild($cqobject); 

Commentaires en retour