TIBCO Adapter SDK C++ Reference
MInteger::=
MInteger
Assignment operator. This method allows you to directly assign an unsigned int value to an MInteger.
Parameters
Parameters Description
unsigned int uintValue Value to assign.
Examples
MInteger mInt (42);    //start with MInteger
mInt = 10;                  //now needed as mInt

unsigned int ui;
mInt = ui;                    // can be unsigned int if needed
Declaration
MInteger& operator =(unsigned int uintValue);
Links
Copyright (c) 2010 TIBCO Software Inc. All rights reserved.