GetObjectModelVersionMinor

Description

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

Syntaxe

Perl

$prodinfo->GetObjectModelVersionMinor(); 
Identificateur
Description
prodinfo
A CQProductInfo object.
Valeur renvoyée
A Long containing the object model version (for example, 1).

Exemple

Perl

use CQPerlExt;



my $cqobject = CQSession::Build();

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

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

CQSession::Unbuild($cqobject); 

Feedback