OSIString :: assign - Assign OSI string
OSI strings can be assigned by using different string objects. The string passed must contain an OSI expression or operation path.
Return value: OSI string ( odaba::String & )
The string should contains a valid OSI expression or operation path.
Implementation overview
- Create copy for OSI string
OSIString :: assign ( cOSIString ) - Create OSI string from string
OSIString :: assign ( cString )
Implementation details
-
Create copy for OSI string
odaba::OSIString & OSIString  :: assign ( odaba::OSIString &cOSIString )
The function creates a copy for the OSIString passed in cOSIString-
- cOSIString
- OSI string
The string should contains a valid OSI expression or operation path.
to list
- cOSIString
- OSI string
-
Create OSI string from string
odaba::OSIString & OSIString  :: assign ( odaba::String &cString )
The string passed in cString is copied to the OSIString. The string must contain a valid OSI expression.
- cString
- Constant string object
When iPosition exceeds the string length or when the string is empty, the the function returns -1 (lower).
to list
- cString
- Constant string object