- Timestamp:
- Mar 31, 2007, 6:15:20 PM (18 years ago)
- Location:
- trunk/foundation
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/foundation/Makefile
r241 r283 23 23 -I $(NOMPATH)/class_h -I $(NOMPATH)/include \ 24 24 -I $(GUITKPATH)/class_h -I $(GUITKPATH)/include 25 26 # NOM IDL compiler 27 NOMIDLINC = -I$(TKIDLDIR) 28 NOMIDLCOMPILER = $(BINDIR)/nom-idl-compiler.exe 25 29 26 30 … … 58 62 ################################### 59 63 60 BASE_NOMCOMPILEH = $(IDLCOMP) -include=$(TKIDLDIR) --showcpperrors --header --output-dir=$(CLASSINC) $<61 BASE_NOMCOMPILEIH = $(IDLCOMP) -include=$(TKIDLDIR) --showcpperrors --ihfile --output-dir=$(CLASSINC) $<64 #BASE_NOMCOMPILEH = $(IDLCOMP) -include=$(TKIDLDIR) --showcpperrors --header --output-dir=$(CLASSINC) $< 65 #BASE_NOMCOMPILEIH = $(IDLCOMP) -include=$(TKIDLDIR) --showcpperrors --ihfile --output-dir=$(CLASSINC) $< 62 66 BASE_NOMCOMPILEC = $(IDLCOMP) -include=$(TKIDLDIR) --showcpperrors --c-template --output-dir=$(CLASSTEMPLATEDIR) $< 67 68 BASE_NOMCOMPILEH = gcc -E -x c -D__NOM_IDL_COMPILER__ $(NOMIDLINC) $< | $(NOMIDLCOMPILER) --emit-h -d $(CLASSINC) - 69 BASE_NOMCOMPILEIH = gcc -E -x c -D__NOM_IDL_COMPILER__ $(NOMIDLINC) $< | $(NOMIDLCOMPILER) --emit-ih -d $(CLASSINC) - 70 63 71 64 72 -
trunk/foundation/class_c/nomfilepath.c
r227 r283 99 99 return (NOMPath*)NOMPath_appendCString((NOMString*)nomSelf, G_DIR_SEPARATOR_S, ev); 100 100 101 /* This is not a copy */ 102 chrTemp=NOMPath_queryCString(nomSelf, NULLHANDLE); 101 103 /* Add a separator */ 102 104 if(G_DIR_SEPARATOR!=chrTemp[len-1]) … … 184 186 PNOMPath nomRetval=(PNOMPath) NOMPath_new(nomSelf, NULLHANDLE); 185 187 gchar *chrTemp; 186 188 g_message("In %s", __FUNCTION__); 187 189 chrTemp=NOMPath_queryCString(nomSelf, NULLHANDLE); /* Not a copy */ 188 190 -
trunk/foundation/class_c/nomstring.c
r241 r283 47 47 #include <string.h> 48 48 #include <glib.h> 49 49 #include "nomfoundation.h" 50 50 #include "nomstring.ih" 51 51 … … 120 120 NOMStringData* nomThis=NOMStringGetData(nomSelf); 121 121 122 //g_message("In %s %d %s", __FUNCTION__, _gString->len, _gString->str ); 123 122 124 return _gString->len; 123 125 } -
trunk/foundation/idl/nomfilepath.idl
r227 r283 46 46 interface NOMPath : NOMString 47 47 { 48 #ifdef __NOM_IDL_COMPILER__ 49 filestem=nomfilepath; 50 #endif 48 51 /** 49 52 The current version of this class is 1.0 -
trunk/foundation/idl/nomstring.idl
r227 r283 51 51 interface NOMString : NOMObject 52 52 { 53 #ifdef __NOM_IDL_COMPILER__ 54 filestem=nomstring; 55 #endif 56 53 57 /** 54 58 The current version of this class is 1.0
Note:
See TracChangeset
for help on using the changeset viewer.