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, 18 years ago

synchronizeable.cc, synchronizeable.h updated

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