Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/network/src/subprojects/network/simple_sync.h @ 7631

Last change on this file since 7631 was 7631, checked in by rennerc, 18 years ago

synchronisation should work now

File size: 420 bytes
Line 
1/*!
2 * @file simple_sync.h
3 *  implementation of a network sync test
4 */
5
6#ifndef _SIMPLE_SYNC
7#define _SIMPLE_SYNC
8
9#include "synchronizeable.h"
10
11
12class SimpleSync : public Synchronizeable
13  {
14  public:
15    SimpleSync( std::string name);
16    SimpleSync(const TiXmlElement* root = NULL);
17    virtual ~SimpleSync();
18   
19    void debug();
20
21
22  private:
23    int in;
24    int out;
25    int id;
26  };
27
28#endif /* _SIMPLE_SYNC */
Note: See TracBrowser for help on using the repository browser.