Jump to content

SomStringFromId: Difference between revisions

From EDM2
Created page with "This function returns the string that a SOM ID represents. ==Syntax== <PRE> somId id; string rc; rc = somStringFromId(id); </PRE> ==Parameters== ; id (somId) : The SO..."
 
Ak120 (talk | contribs)
mNo edit summary
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{DISPLAYTITLE:somStringFromId}}
This function returns the string that a SOM ID represents.
This function returns the string that a SOM ID represents.


==Syntax==
==Syntax==
<PRE>
somId    id;
somId    id;
string    rc;
string    rc;
rc = somStringFromId(id);
rc = somStringFromId(id);
</PRE>


==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 21: Line 20:


==Related==
==Related==
===Data Structures===
;Data Structures
* string (somcorba.h)  
* string (somcorba.h)
* somid (sombtype.h)  
* somid (sombtype.h)
===Functions===
;Functions
* [[somCheckId]]
* [[somCheckId]]
* [[somRegisterId]]
* [[somRegisterId]]
* [[somIdFromString]]  
* [[somIdFromString]]
* [[somCompareIds]]
* [[somCompareIds]]
* [[somTotalRegIds]]
* [[somTotalRegIds]]
Line 35: Line 34:
* [[somEndPersistentIds]]
* [[somEndPersistentIds]]


[[Category:SOM Kernel]]
[[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