Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 5548 was 5548, checked in by snellen, 18 years ago

synchronizeable.cc and synchronizeable.h should now compile

File size: 583 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 <base_object.h>
10#include "netdefs.h"
11
12
13class Synchronizeable : public BaseObject
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.