Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 11, 2005, 5:01:29 PM (18 years ago)
Author:
snellen
Message:

synchronizeable.cc, synchronizeable.h updated

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/lib/network/synchronizeable.h

    r5529 r5547  
    22 * @file connection_monitor.h
    33    \brief provides information about the quality of a connection.
     4 */
    45
    5  
     6#ifndef _SYNCHRONIZEABLE_H
     7#define _SYNCHRONIZEABLE_H
    68
    7 class Synchronizeable
     9#include <class_list.h>
     10#include "netdefs.h"
     11
     12
     13class Synchronizeable: public ClassList
    814{
    915        public:
    10                 Synchronizeable();
    11                 ~Synchronizeable();
     16
     17                   Synchronizeable();
     18                   ~Synchronizeable();
     19
     20 virtual byte[]    writeByteStream();
     21 virtual void      readByteStream(byte[] data);
     22 virtual void      writeDebug();
     23 virtual void      readDebug();
    1224
    1325
    1426        private:
    1527
     28 int               uniqueID;
     29
    1630};
    1731
    18 */
     32#endif /* _SYNCHRONIZEABLE_H
Note: See TracChangeset for help on using the changeset viewer.