Changeset 220 for trunk/nom/class_c/nomclassmanager.c
- Timestamp:
- Feb 3, 2007, 9:48:19 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/nom/class_c/nomclassmanager.c
r208 r220 51 51 52 52 53 /** 54 \brief Function which implements the nomFindClassFromID() method of NOMClassMgr. 55 56 \remark This method isn't implemented yet. 57 */ 53 58 NOM_Scope CORBA_Object NOMLINK impl_NOMClassMgr_nomFindClassFromId(NOMClassMgr* nomSelf, 54 59 const CORBA_long classId, … … 65 70 } 66 71 72 /** 73 \brief Function which implements the nomFindClassFromName() method of NOMClassMgr. 74 */ 67 75 NOM_Scope CORBA_Object NOMLINK impl_NOMClassMgr_nomFindClassFromName(NOMClassMgr* nomSelf, 68 76 const CORBA_char * className, … … 95 103 } 96 104 97 /* 105 /** 98 106 This function is called when a class is (accidently) removed from our class list. 99 107 This may happen e.g. when a class is registered again using the same name. The old … … 111 119 } 112 120 113 /* We register mtabs as unique pointers to classes. It's possible to get every 114 information from an mtab. */ 121 /** 122 \brief Function which implements the nomRegisterClass() method of NOMClassMgr. 123 124 We register mtabs as unique pointers to classes. It's possible to get every 125 information from an mtab. 126 */ 115 127 NOM_Scope void NOMLINK impl_NOMClassMgr_nomRegisterClass(NOMClassMgr* nomSelf, const gpointer classMtab, 116 128 CORBA_Environment *ev) … … 133 145 134 146 135 147 /** 148 \brief Function which implements the nomGetClassList() method of NOMClassMgr. 149 */ 136 150 NOM_Scope PGData NOMLINK impl_NOMClassMgr_nomGetClassList(NOMClassMgr* nomSelf, CORBA_Environment *ev) 137 151 { … … 142 156 return _gdataClassList; 143 157 } 158 144 159 145 160 NOM_Scope gpointer NOMLINK impl_NOMClassMgr_nomGetClassInfoPtrFromName(NOMClassMgr* nomSelf, … … 177 192 } 178 193 194 /** 195 \brief Function which implements the nomRegisterMethod() method of NOMClassMgr. 196 */ 179 197 NOM_Scope void NOMLINK impl_NOMClassMgr_nomRegisterMethod(NOMClassMgr* nomSelf, 180 198 const gpointer classMtab, … … 193 211 } 194 212 213 /** 214 \brief Function which implements the nomIsObject() method of NOMClassMgr. 215 */ 195 216 NOM_Scope CORBA_boolean NOMLINK impl_NOMClassMgr_nomIsObject(NOMClassMgr* nomSelf, const PNOMObject nomObject, 196 217 CORBA_Environment *ev) … … 213 234 return 0; 214 235 } 236 /** 237 \brief Function which implements the nomInit() override NOMClassMgr. 238 */ 215 239 NOM_Scope void NOMLINK impl_NOMClassMgr_nomInit(NOMClassMgr* nomSelf, CORBA_Environment *ev) 216 240 {
Note:
See TracChangeset
for help on using the changeset viewer.