GetProductName

Description

Returns the product name to let you know your script or code is running under HCL Compass. The returned value is "HCL Compass".

Syntax

Perl


$prodinfo->GetProductName(); 
Identifier
Description
prodinfo
A CQProductInfo object.
Return value
A String containing the product name.

Example

Perl


use CQPerlExt;

my $cqobject = CQSession::Build();

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

print "ProductName = '".$prodinfo->GerProductName()."'\n";

CQSession::Unbuild($cqobject);