Changeset 101 for trunk/nom/class_c/nomcls.c
- Timestamp:
- Nov 25, 2006, 5:26:24 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/nom/class_c/nomcls.c
r94 r101 44 44 45 45 #include "nomcls.ih" 46 47 46 #include "nomclassmanager.h" 48 47 … … 73 72 return NULLHANDLE; 74 73 74 /* _nomInit() is called in _nomRenew() */ 75 75 return _nomRenew(nomSelf, (CORBA_Object)nObj, NULLHANDLE); /* This will also init the object */ 76 76 } … … 99 99 NOM_Scope CORBA_Object NOMLINK impl_NOMClass_nomRenew(NOMClass* nomSelf, const CORBA_Object nomObj, CORBA_Environment *ev) 100 100 { 101 102 101 _nomRenewNoInit(nomSelf, nomObj, NULLHANDLE); 103 102 104 /* call somDefaultInit() for initialization */105 /* _somDefaultInit((SOMObject*)obj); */106 107 #warning !!!!! No _nomInitialize() for new objects !!!!!108 103 /* And now give the object the possibility to initialize... */ 109 //_nomInitialize((NOMObject*)nomObj);104 _nomInit((NOMObject*)nomObj, NULLHANDLE); 110 105 111 106 return nomObj;
Note:
See TracChangeset
for help on using the changeset viewer.