Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/proxy/src/lib/network/synchronizeable_var/synchronizeable_uint.h @ 9347

Last change on this file since 9347 was 9347, checked in by bensch, 18 years ago

orxonox/proxy: merged the proxy.old back again, and it seems to work.

Merged with command
svn merge -r9247:HEAD https://svn.orxonox.net/orxonox/branches/proxy.old .

no conflicts

File size: 520 bytes
Line 
1/*!
2 * @file synchronizeable_uint.h
3 * @brief Definition of SynchronizeableInt
4*/
5
6#include "synchronizeable_var/synchronizeable_int.h"
7
8#ifndef _SYNCHRONIZEABLE_UINT_H
9#define _SYNCHRONIZEABLE_UINT_H
10
11class SynchronizeableUInt : public SynchronizeableInt {
12
13  public:
14    SynchronizeableUInt( unsigned int * ptrIn, unsigned int * ptrOut, std::string name, int permission = PERMISSION_MASTER_SERVER, int priority = 0 );
15    virtual ~SynchronizeableUInt();
16   
17    virtual void debug();
18
19};
20
21#endif /* _PROTO_CLASS_H */
Note: See TracBrowser for help on using the repository browser.