Changeset 128
- Timestamp:
- Nov 30, 2006, 7:03:31 PM (18 years ago)
- Location:
- trunk/foundation
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/foundation/class_c/nomfilepath.c ¶
r125 r128 14 14 #include "nomfilepath.ih" 15 15 16 NOM_Scope PNOM FilePath NOMLINK impl_NOMFilePath_appendPath(NOMFilePath* nomSelf, const PNOMFilePath nomFPath, CORBA_Environment *ev)16 NOM_Scope PNOMPath NOMLINK impl_NOMPath_appendPath(NOMPath* nomSelf, const PNOMPath nomPath, CORBA_Environment *ev) 17 17 { 18 18 /* NOMFilePathData* nomThis=NOMFilePathGetData(nomSelf); */ 19 #warning !!!!! NOM FilePath_appendPath() is a stub !!!!!20 NOM FilePath_appendString((NOMString*) nomSelf, (NOMString*)nomFPath, NULLHANDLE);19 #warning !!!!! NOMPath_appendPath() is a stub !!!!! 20 NOMPath_appendString((NOMString*) nomSelf, (NOMString*)nomPath, NULLHANDLE); 21 21 return nomSelf; 22 22 } -
TabularUnified trunk/foundation/idl/nomfilepath.idl ¶
r123 r128 33 33 * ***** END LICENSE BLOCK ***** */ 34 34 35 #ifndef NOM FILEPATH_IDL_INCLUDED36 #define NOM FILEPATH_IDL_INCLUDED35 #ifndef NOMPATH_IDL_INCLUDED 36 #define NOMPATH_IDL_INCLUDED 37 37 38 38 #include "nomstring.idl" 39 39 #include "nomfoundation.idl" 40 40 41 NOMCLASSNAME(NOM FilePath);41 NOMCLASSNAME(NOMPath); 42 42 43 interface NOM FilePath : NOMString43 interface NOMPath : NOMString 44 44 { 45 45 NOMCLASSVERSION(1, 0); 46 46 47 PNOM FilePath appendPath(in PNOMFilePath nomFPath);47 PNOMPath appendPath(in PNOMPath nomPath); 48 48 49 49 }; 50 50 51 #endif /* NOM FILEPATH_IDL_INCLUDED */51 #endif /* NOMPATH_IDL_INCLUDED */ 52 52 53 53
Note:
See TracChangeset
for help on using the changeset viewer.