Update of /cvsroot/gcblue/gcb_wx/include/common
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14250/include/common
Modified Files:
tcObjStream.h
Log Message:
fixed problem writing to account database, added command state update as part of create update for new objects at client, removed application-level command ack
Index: tcObjStream.h
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/include/common/tcObjStream.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** tcObjStream.h 1 May 2004 21:50:23 -0000 1.1
--- tcObjStream.h 17 Apr 2005 22:34:59 -0000 1.2
***************
*** 29,32 ****
--- 29,36 ----
#include "common/tcStream.h"
+ class tcCommandStream;
+ class tcCreateStream;
+ class tcUpdateStream;
+
/**
* This file holds the classes derived from tcStream that are used for obj
***************
*** 41,44 ****
--- 45,49 ----
{
public:
+ tcCommandStream& AsCommandStream();
tcCreateStream();
tcCreateStream(const char* data, std::streamsize count);
***************
*** 64,71 ****
{
public:
! bool isAck; ///< set true to indicate acknowledgement command update
!
! bool GetAck() const;
! void SetAck(bool state);
tcCommandStream();
--- 69,73 ----
{
public:
! tcCreateStream& AsCreateStream();
tcCommandStream();
|