Changeset 294 for trunk/nom/idl
- Timestamp:
- Apr 7, 2007, 4:29:56 PM (19 years ago)
- Location:
- trunk/nom/idl
- Files:
- 
      - 2 edited
 
 - 
          
  nomclassmanager.idl (modified) (3 diffs)
- 
          
  nomcls.idl (modified) (2 diffs)
 
Legend:
- Unmodified
- Added
- Removed
- 
      trunk/nom/idl/nomclassmanager.idlr281 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); 
- 
      trunk/nom/idl/nomcls.idlr281 r294 145 145 146 146 /** 147 Query the structure holding all the info needed for creating new objects. 148 147 149 \remarks 150 You should know what you're doing if you want to use the structure returned by this method... 148 151 The return type may change. 149 152 */ … … 169 172 The type of this variable will change! 170 173 */ 171 NOMINSTANCEVAR( stringncpObject); //NOMClassPriv structure holding info about the object this class can create174 NOMINSTANCEVAR(gpointer ncpObject); //NOMClassPriv structure holding info about the object this class can create 172 175 NOMOVERRIDE(nomInit); 173 176 
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  
