Author:halw

Date:2011-03-06T21:55:38.000000Z


git-svn-id: https://svn.eiffel.com/eiffel-org/trunk@823 abb3cda0-5349-4a8f-a601-0c33ac3a8c38
This commit is contained in:
halw
2011-03-06 22:14:09 +00:00
parent 6287d2b261
commit b1527181f6
3 changed files with 22 additions and 15 deletions

View File

@@ -19,7 +19,7 @@ ISE Eiffel 4.1 and later.
{{SeeAlso| <br/>
[[Reference for `eif_wean']]<br/>
[[eif_wean]]<br/>
[[eif_adopt]]<br/>
[[eif_protect]] }}

View File

@@ -21,6 +21,6 @@ ISE Eiffel 4.1 and later.
{{SeeAlso| <br/>
[[eif_access]]<br/>
[[eif_protect]]<br/>
[[Reference for `eif_wean']] }}
[[eif_wean]] }}

View File

@@ -1,23 +1,30 @@
[[Property:title|eif_create]]
[[Property:weight|-7]]
[[Property:uuid|b928f4b9-2830-5723-6f02-57eac618b116]]
==SYNOPSYS==
<code>
'''#include "eif_cecil. h"'''
==Synopsis==
<code lang="text">
#include "eif_cecil. h"
'''EIF_OBJECT eif_create (EIF_TYPE_ID''' ''tid''''');'''</code>
EIF_OBJECT eif_create (EIF_TYPE_ID tid);
</code>
==DESCRIPTION==
The '''eif_create()''' function creates an Eiffel object, which type identifier is ''tid''.
==RETURN VALUE==
==Description==
The <code lang="text">eif_create</code> function creates an Eiffel object, which type identifier is <code lang="text">tid</code>.
==Return value==
It returns an Eiffel object, which is already protected.
==NOTES==
You cannot pass the return value to Eiffel routines as is: you must call '''eif_access()''' to pass it to Eiffel routine. <br/>
To release the protection of an Eiffel object created with '''eif_create()''', call '''eif_wean()'''. It will be collected during the next collection.
==CONFORMANCE==
==Notes==
You cannot pass the return value to Eiffel routines as is: you must call [[eif_access]] to pass it to Eiffel routine.
To release the protection of an Eiffel object created with <code lang="text">eif_create</code>, call [[eif_wean]]. It will be collected during the next collection.
==Conformance==
ISE Eiffel 4.1 and later.
==SEE ALSO==
'''eif_wean'''(1) , '''eif_type_id'''(1).
{{SeeAlso| <br/>
[[eif_wean]]<br/>
[[eif_type_id]] }}