Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/network/src/network/Synchronisable.h @ 230

Last change on this file since 230 was 230, checked in by scheusso, 16 years ago

created base-class Synchronisable; the files are still quite empty

File size: 720 bytes
Line 
1//
2// C++ Interface: synchronisable
3//
4// Description:
5//
6//
7// Author:  Oliver Scheuss, (C) 2007
8//
9// Copyright: See COPYING file that comes with this distribution
10//
11//
12#ifndef NETWORKSYNCHRONISABLE_H
13#define NETWORKSYNCHRONISABLE_H
14
15namespace network {
16
17/**
18 * This class is the base class of all the Objects in the universe that need to be synchronised over the network
19 * Every class, that inherits from this class has to link the DATA THAT NEEDS TO BE SYNCHRONISED into the linked list. Additionally it also has to provide a Constructor, that takes exactly the variables in this linked list.
20 * @author Oliver Scheuss
21*/
22class Synchronisable{
23public:
24    Synchronisable();
25
26    ~Synchronisable();
27
28};
29
30}
31
32#endif
Note: See TracBrowser for help on using the repository browser.