Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

added some output so synchronizeable to find strange bug. did not help :(

File size: 371 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    virtual ~SimpleSync();
17   
18    void debug();
19
20
21  private:
22    int in;
23    int out;
24    int id;
25  };
26
27#endif /* _SIMPLE_SYNC */
Note: See TracBrowser for help on using the repository browser.