GetLicenseVersion

Description

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

Syntaxe

Perl

$prodinfo->GetLicenseVersion(); 
Identificateur
Description
prodinfo
A CQProductInfo object.
Valeur renvoyée
A String containing the license version (for example, 1.1).

Exemple

Perl

use CQPerlExt;



my $cqobject = CQSession::Build();

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

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

CQSession::Unbuild($cqobject); 

Commentaires