From: Marek P. <ma...@us...> - 2001-11-21 22:31:54
|
Update of /cvsroot/javaprofiler/library/src/string In directory usw-pr-cvs1:/tmp/cvs-serv12170/src/string Modified Files: Makefile.rules dir.info string.cpp string.h Log Message: some parts completely rewritten; changes in communication interface to make it faster; ported to linux Index: Makefile.rules =================================================================== RCS file: /cvsroot/javaprofiler/library/src/string/Makefile.rules,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Makefile.rules 2001/07/22 23:37:58 1.2 --- Makefile.rules 2001/11/21 22:31:51 1.3 *************** *** 1,4 **** string.o \ ! string.obj: string.cpp ../main/includes.h $(CCC) $(CPPFLAGS) string.cpp --- 1,4 ---- string.o \ ! string.obj: string.cpp $(CCC) $(CPPFLAGS) string.cpp Index: dir.info =================================================================== RCS file: /cvsroot/javaprofiler/library/src/string/dir.info,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** dir.info 2001/07/28 04:11:17 1.4 --- dir.info 2001/11/21 22:31:51 1.5 *************** *** 1,3 **** ! FILES = string ! CLEAN_FILES = *.pdb *.obj *.o --- 1,2 ---- ! FILES = string CLEAN_FILES = *.pdb *.obj *.o Index: string.cpp =================================================================== RCS file: /cvsroot/javaprofiler/library/src/string/string.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** string.cpp 2001/09/02 20:14:22 1.6 --- string.cpp 2001/11/21 22:31:51 1.7 *************** *** 33,37 **** */ ! #include "../main/includes.h" String::String( const char* str) { --- 33,37 ---- */ ! #include "../string/string.h" String::String( const char* str) { Index: string.h =================================================================== RCS file: /cvsroot/javaprofiler/library/src/string/string.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** string.h 2001/09/02 20:14:22 1.8 --- string.h 2001/11/21 22:31:51 1.9 *************** *** 36,39 **** --- 36,41 ---- #define _STRINGX_H_ + #include "../main/includes.h" + /** Class implementing string. This class implements a C string in such ** a way it looks like primitive type. It is only a stupid implementation |