GetPatchVersion

Description

Restituisce la versione corrente del fix pack del prodotto.

Sintassi

Perl

$prodinfo->GetPatchVersion(); 
Identificativo
Description
prodinfo
Un oggetto CQProductInfo.
Valore di ritorno
Un valore String che contiene la versione del fix pack, se presente.

Esempio

Perl

use CQPerlExt;



my $cqobject = CQClearQuest::Build();

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

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

CQClearQuest::Unbuild($cqobject); 


Feedback