GetBuildNumber

Description

Returns the product build number. This number is used to uniquely identify each build.

Syntax

Perl

$prodinfo->GetBuildNumber(); 
Identifier
Description
prodinfo
A CQProductInfo object.
Return value
A String containing the product build number (for example, 00430).

Example

Perl

use CQPerlExt;



my $cqobject = CQClearQuest::Build();

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

print "BuildNumber         = '".$prodinfo->GetBuildNumber()."'\n";

CQClearQuest::Unbuild($cqobject); 

Commentaire