Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

subprojects/network can test handshake now

File size: 370 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(const char* 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.