Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5564 in orxonox.OLD


Ignore:
Timestamp:
Nov 14, 2005, 9:59:53 PM (18 years ago)
Author:
snellen
Message:

synchronizeable.h and synchronizeable.cc updated

Location:
branches/network/src/lib/network
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/lib/network/connection_monitor.cc

    r5550 r5564  
    1616#include "connection_monitor.h"
    1717
     18/* using namespace std is default, this needs to be here */
     19using namespace std;
     20
    1821ConnectionMonitor::ConnectionMonitor()
    1922 {
  • branches/network/src/lib/network/synchronizeable.cc

    r5548 r5564  
    4141                          \brief write data to NetworkStream
    4242 */
    43  byte* Synchronizeable::writeByteStream()
     43 void Synchronizeable::writeByteStream(byte* data)
    4444{
    4545
     
    5050
    5151/**
    52                                  \brief read Data from NetworkStream
     52                                 \brief read data from NetworkStream
    5353 */
    54  void Synchronizeable::readByteStream(byte* data)
     54 byte* Synchronizeable::readByteStream()
    5555{
    5656
  • branches/network/src/lib/network/synchronizeable.h

    r5550 r5564  
    1717                   ~Synchronizeable();
    1818
    19  virtual byte*     writeByteStream();
    20  virtual void      readByteStream(byte* data);
     19 virtual void      writeByteStream(byte* data);
     20 virtual byte*     readByteStream();
    2121 virtual void      writeDebug();
    2222 virtual void      readDebug();
Note: See TracChangeset for help on using the changeset viewer.