GetLicenseVersion

Description

Returns the version of the FLEXlm feature that is used to get a license.

Syntax

Perl

$prodinfo->GetLicenseVersion(); 
Identifier
Description
prodinfo
A CQProductInfo object.
Return value
A String containing the license version (for example, 1.1).

Example

Perl

use CQPerlExt;



my $cqobject = CQClearQuest::Build();

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

print "LicenseVersion      = '".$prodinfo->GetLicenseVersion()."'\n";

CQClearQuest::Unbuild($cqobject); 

Feedback