camino-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Camino-devel] camino/src/server Player.h Player.cpp


From: Philippe Fremy
Subject: [Camino-devel] camino/src/server Player.h Player.cpp
Date: Sun, 26 Jan 2003 16:53:59 -0500

CVSROOT:        /cvsroot/camino
Module name:    camino
Changes by:     Philippe Fremy <address@hidden> 03/01/26 16:53:58

Modified files:
        src/server     : Player.h Player.cpp 

Log message:
        code and decodes messages at the same time

Patches:
Index: camino/src/server/Player.cpp
diff -u camino/src/server/Player.cpp:1.2 camino/src/server/Player.cpp:1.3
--- camino/src/server/Player.cpp:1.2    Sun Jan 26 15:32:19 2003
+++ camino/src/server/Player.cpp        Sun Jan 26 16:53:58 2003
@@ -2,7 +2,7 @@
 **
 ** Camino
 **
-** Version : $Id: Player.cpp,v 1.2 2003/01/26 20:32:19 pfremy Exp $
+** Version : $Id: Player.cpp,v 1.3 2003/01/26 21:53:58 pfremy Exp $
 **
 ** Author(s) : Philippe Fremy, Pascal Audoux
 ** Creation : 14/01/2003
@@ -33,7 +33,7 @@
 
 /** add comments here */
 Player::Player( QSocket * socket, CaminoServer * caminoServer)
-    : MsgDecoder( socket )
+    : MsgCoder( socket ), MsgDecoder( socket )
 {
     _caminoServer = caminoServer;
     _socket = socket;
Index: camino/src/server/Player.h
diff -u camino/src/server/Player.h:1.2 camino/src/server/Player.h:1.3
--- camino/src/server/Player.h:1.2      Sun Jan 26 15:32:19 2003
+++ camino/src/server/Player.h  Sun Jan 26 16:53:58 2003
@@ -5,7 +5,7 @@
 ** Player.h
 ** this is a template for all .h files
 **
-** Version : $Id: Player.h,v 1.2 2003/01/26 20:32:19 pfremy Exp $
+** Version : $Id: Player.h,v 1.3 2003/01/26 21:53:58 pfremy Exp $
 ** Author(s) : Philippe Fremy, Pascal Audoux
 ** Creation : 14/01/2003
 ** Copyright: Pascal Audoux, Philippe Fremy 2003
@@ -44,7 +44,7 @@
 class QSocket;
 
 /** comment for the class */
-class Player : public MsgDecoder
+class Player : public MsgCoder, public MsgDecoder
 {
  
 public:




reply via email to

[Prev in Thread] Current Thread [Next in Thread]