Changeset 120
- Timestamp:
- Nov 28, 2006, 6:02:20 PM (19 years ago)
- Location:
- trunk/nom
- Files:
-
- 2 edited
-
class_c/nomobj.c (modified) (1 diff)
-
idl/nomobj.idl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/nom/class_c/nomobj.c
r94 r120 72 72 } 73 73 74 NOM_Scope void NOMLINK impl_NOMObject_delete(NOMObject* nomSelf, CORBA_Environment *ev) 75 { 76 /* NOMObjectData* nomThis=NOMObjectGetData(nomSelf); */ 74 77 78 /* Give object the chance to free resources */ 79 _nomUninit(nomSelf, NULLHANDLE); 80 81 /* And now delete the object */ 82 /* 83 FIXME: we should probably call a class function here, so the 84 class can keep track of objects. 85 */ 86 NOMFree(nomSelf); 87 } 88 89 -
trunk/nom/idl/nomobj.idl
r94 r120 46 46 /* Return the size of the object. That is sizeof(mTab*)+sizeof(all instance vars) */ 47 47 long nomGetSize(); 48 48 void delete(); 49 49 #if 0 50 50 NOMOVERRIDE(wpEchoString);
Note:
See TracChangeset
for help on using the changeset viewer.
