GetFullProductVersion

Description

Returns the full product version. This method is equivalent to the GetProductVersion and GetPatchVersion return values separated by a space.

Syntax

Perl

$prodinfo->GetFullProductVersion(); 
Identifier
Description
prodinfo
A CQProductInfo object.
Return value
A String containing the full product version.

Example

Perl

use CQPerlExt;



my $cqobject = CQClearQuest::Build();

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

print "FullProductVersion  = '".$prodinfo->GetFullProductVersion()."'\n";

CQClearQuest::Unbuild($cqobject); 

Feedback