GetObjectModelVersionMinor

Description

Returns a version number for the API itself. The minor number may increase when other upward-compatible changes are made.

Syntax

Perl


$prodinfo->GetObjectModelVersionMinor(); 
Identifier
Description
prodinfo
A CQProductInfo object.
Return value
A Long containing the object model version (for example, 1).

Example

Perl


use CQPerlExt;



my $cqobject = CQSession::Build();

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

print $prodinfo->GetObjectModelVersionMinor(),"\n";

CQSession::Unbuild($cqobject);