TIBCO Adapter SDK C++ Reference
MInteger::=
MInteger
Assignment operator. This method allows you to directly assign a long value to an MInteger.

Parameters
Parameters Description
long longValue Value to assign.
Examples
MInteger mInt (42);    //start with MInteger
mInt = 10;             //now needed as mInt
long l;
mInt = l               //MInteger can be long if needed
etc...
Declaration
MInteger& operator =(long longValue);
Links
Copyright (c) 2010 TIBCO Software Inc. All rights reserved.