From: Dejan L. <de...@us...> - 2004-06-12 22:48:40
|
Update of /cvsroot/rtk/rtk/rtk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26585/rtk Modified Files: Buffer.h Log Message: Latest Buffer code and Dev-C++ project files. Index: Buffer.h =================================================================== RCS file: /cvsroot/rtk/rtk/rtk/Buffer.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Buffer.h 12 Jun 2004 07:33:29 -0000 1.8 --- Buffer.h 12 Jun 2004 22:48:29 -0000 1.9 *************** *** 49,58 **** #include "Export.h" #include "Array.h" #include "rtkdef.h" - #ifdef _DEBUG - #include "String.h" - #endif - namespace Rtk { --- 49,55 ---- #include "Export.h" #include "Array.h" + #include "IO.h" #include "rtkdef.h" namespace Rtk { *************** *** 119,127 **** void Fill(uchar arg_char); ! ! #ifdef _DEBUG ! void FromFile(const String& arg_fname); ! void ToFile(const String& arg_fname) const; ! #endif }; // Buffer }; // Rtk namespace --- 116,123 ---- void Fill(uchar arg_char); ! ! // This should be removed after testing... ! void From(IO* arg_io); ! void To(IO* arg_io); }; // Buffer }; // Rtk namespace |