Changeset 294 for trunk/nom/idl/nomclassmanager.idl
- Timestamp:
- Apr 7, 2007, 4:29:56 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/nom/idl/nomclassmanager.idl
r281 r294 49 49 50 50 */ 51 52 interface NOMClass; 53 51 54 interface NOMClassMgr : NOMObject 52 55 { … … 57 60 58 61 /** 59 Find the class with the given nomId in the internal class list managed by the62 Find the class object for the class with the given nomId in the internal class list managed by the 60 63 class manager. 61 64 … … 69 72 \param ulMinorVersion This parameter is not used at the moment and should be set to 0. 70 73 \return 71 The class with the given name or NULL if not found.72 */ 73 PNOMObjectnomFindClassFromId(in long classId,74 The class object for the class with the given name or NULL if not found. 75 */ 76 NOMClass* nomFindClassFromId(in long classId, 74 77 in long ulMajorVersion, 75 78 in long ulMinorVersion); 76 79 77 80 /** 78 Find the class with the given name in the internal class list managed by the81 Find the class object for the class with the given name in the internal class list managed by the 79 82 class manager. 80 83 81 84 \remark 82 This method will return classes and metaclasses.85 This method will return the metaclasses for the given class name. 83 86 84 87 \par How to override 85 88 This method is usually not overriden. 86 89 87 \param className The name of the class to be foundas a C string.90 \param className The name of the class as a C string. 88 91 \param ulMajorVersion This parameter is not used at the moment and should be set to 0. 89 92 \param ulMinorVersion This parameter is not used at the moment and should be set to 0. 90 93 \return 91 The class with the given name or NULL if not found.92 */ 93 PNOMObjectnomFindClassFromName(in string className,94 The class object for the class with the given name or NULL if not found. 95 */ 96 NOMClass* nomFindClassFromName(in string className, 94 97 in long ulMajorVersion, 95 98 in long ulNinorVersion);
Note:
See TracChangeset
for help on using the changeset viewer.