GetPatchVersion

Description

Returns the current fix pack version of the product.

Syntaxe

Perl

$prodinfo->GetPatchVersion(); 
Identificateur
Description
prodinfo
A CQProductInfo object.
Valeur renvoyée
A String containing the fix pack version, if any.

Exemple

Perl

use CQPerlExt;



my $cqobject = CQClearQuest::Build();

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

print "PatchVersion        = '".$prodinfo->GetPatchVersion()."'\n";

CQClearQuest::Unbuild($cqobject); 

Commentaires en retour