Update of /cvsroot/csp/APPLICATIONS/SimData/Include/SimData
In directory sc8-pr-cvs1:/tmp/cvs-serv1393
Modified Files:
Tag: simdata
DataArchive.h
Log Message:
no message
Index: DataArchive.h
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/SimData/Include/SimData/Attic/DataArchive.h,v
retrieving revision 1.1.2.3
retrieving revision 1.1.2.4
diff -C2 -d -r1.1.2.3 -r1.1.2.4
*** DataArchive.h 20 Jan 2003 04:56:49 -0000 1.1.2.3
--- DataArchive.h 20 Jan 2003 18:26:20 -0000 1.1.2.4
***************
*** 84,95 ****
friend class PathPointerBase;
! /**
! template <class T> friend class PathPointer;
! template <class T> friend PathPointer<T> getObject(DataArchive&, const char*);
! */
! static const int AS = 1024;
! static const int BUFFERSIZE = 4096;
! static const int BUFFERS = 10;
TableEntry* table;
FILE *f;
--- 84,94 ----
friend class PathPointerBase;
!
! //template <class T> friend class PathPointer;
! //template <class T> friend PathPointer<T> getObject(DataArchive&, const char*);
! static const int AS;
! static const int BUFFERSIZE;
! static const int BUFFERS;
TableEntry* table;
FILE *f;
***************
*** 99,103 ****
int bytes;
int closed;
! char* object_buffer[BUFFERS];
int n_buffer;
hasht_map table_map;
--- 98,102 ----
int bytes;
int closed;
! char* object_buffer[10]; // vector<string> here?
int n_buffer;
hasht_map table_map;
|