TIBCO Adapter SDK C++ Reference
MInteger::=
MInteger
Assignment operator. This method allows you to directly assign a short value to an MInteger.
Parameters
Parameters Description
short shortValue Value to assign.
Examples
MInteger mInt (42);    //start with MInteger
mInt = 10;             //now needed as mInt
short s;
mInt = s               // can be short if needed
Declaration
MInteger& operator =(short shortValue);
Links
Copyright (c) 2010 TIBCO Software Inc. All rights reserved.