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