SomStringFromId: Difference between revisions
Appearance
No edit summary |
mNo edit summary |
||
Line 3: | Line 3: | ||
==Syntax== | ==Syntax== | ||
somId id; | |||
somId id; | string rc; | ||
string rc; | rc = somStringFromId(id); | ||
rc = somStringFromId(id); | |||
==Parameters== | ==Parameters== | ||
; id (somId) : The SOM ID for which the corresponding string is needed. | ;id (somId): The SOM ID for which the corresponding string is needed. | ||
==Return Code== | ==Return Code== | ||
; rc (string) : Returns the string that the given SOM ID represents. | ;rc (string): Returns the string that the given SOM ID represents. | ||
==Remarks== | ==Remarks== | ||
This function returns the string that a given SOM ID represents. | This function returns the string that a given SOM ID represents. | ||
==Example Code== | ==Example Code== | ||
Line 22: | Line 20: | ||
==Related== | ==Related== | ||
;Data Structures | |||
* string (somcorba.h) | * string (somcorba.h) | ||
* somid (sombtype.h) | * somid (sombtype.h) | ||
;Functions | |||
* [[somCheckId]] | * [[somCheckId]] | ||
* [[somRegisterId]] | * [[somRegisterId]] | ||
* [[somIdFromString]] | * [[somIdFromString]] | ||
* [[somCompareIds]] | * [[somCompareIds]] | ||
* [[somTotalRegIds]] | * [[somTotalRegIds]] | ||
Line 36: | Line 34: | ||
* [[somEndPersistentIds]] | * [[somEndPersistentIds]] | ||
[[Category:SOM | [[Category:SOM function]] |
Latest revision as of 05:08, 6 May 2020
This function returns the string that a SOM ID represents.
Syntax
somId id; string rc; rc = somStringFromId(id);
Parameters
- id (somId)
- The SOM ID for which the corresponding string is needed.
Return Code
- rc (string)
- Returns the string that the given SOM ID represents.
Remarks
This function returns the string that a given SOM ID represents.
Example Code
See function somBeginPersistentIds.
Related
- Data Structures
- string (somcorba.h)
- somid (sombtype.h)
- Functions