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

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