Changeset 239 for trunk/nom/class_c
- Timestamp:
- Mar 6, 2007, 8:05:58 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/nom/class_c/nomclassmanager.c
r223 r239 50 50 #include "nomclassmanager.ih" 51 51 52 #include "nomfilepath.h" 52 53 53 54 /** … … 255 256 } 256 257 258 NOM_Scope CORBA_string NOMLINK impl_NOMClassMgr_nomQueryDLLForClass(NOMClassMgr* nomSelf, 259 const CORBA_char * chrClassName, 260 CORBA_Environment *ev) 261 { 262 /* NOMClassMgrData* nomThis=NOMClassMgrGetData(nomSelf); */ 263 NOMPath* thePath; 264 265 if(!chrClassName) 266 return NULL; 267 268 if((thePath=NOMPathNew())==NULLHANDLE) 269 return NULL; 270 271 /* We probably use the home dir later */ 272 thePath=NOMPath_assignCString(thePath, g_get_current_dir(), NULL); 273 thePath=NOMPath_appendCString(thePath, "classlist.ini", NULL); 274 275 return NULL; 276 } 277 278 257 279 static 258 280 int nomClassMgrCompareFunc(gconstpointer a, gconstpointer b)
Note:
See TracChangeset
for help on using the changeset viewer.