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

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