Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/network/src/lib/network/synchronizeable.h @ 5547

Last change on this file since 5547 was 5547, checked in by snellen, 19 years ago

synchronizeable.cc, synchronizeable.h updated

File size: 579 bytes
RevLine 
[5523]1/*!
2 * @file connection_monitor.h
3    \brief provides information about the quality of a connection.
[5547]4 */
[5523]5
[5547]6#ifndef _SYNCHRONIZEABLE_H
7#define _SYNCHRONIZEABLE_H
[5523]8
[5547]9#include <class_list.h>
10#include "netdefs.h"
11
12
13class Synchronizeable: public ClassList
[5523]14{
15        public:
16
[5547]17                   Synchronizeable();
18                   ~Synchronizeable();
[5523]19
[5547]20 virtual byte[]    writeByteStream();
21 virtual void      readByteStream(byte[] data);
22 virtual void      writeDebug();
23 virtual void      readDebug();
24
25
[5523]26        private:
27
[5547]28 int               uniqueID;
29
[5529]30};
31
[5547]32#endif /* _SYNCHRONIZEABLE_H
Note: See TracBrowser for help on using the repository browser.