Description
Returns
the current fix pack version of the product.
Syntax
Perl
$prodinfo->GetPatchVersion();
- Identifier
- Description
- prodinfo
- A CQProductInfo object.
- Return value
- A String containing the fix pack version, if any.
Example
Perl
use CQPerlExt;
my $cqobject = CQClearQuest::Build();
my $prodinfo = $cqobject->CreateProductInfo();
print "PatchVersion = '".$prodinfo->GetPatchVersion()."'\n";
CQClearQuest::Unbuild($cqobject);