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