Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: merged the proxy back

merged with commandsvn merge -r9346:HEAD https://svn.orxonox.net/orxonox/branches/proxy .

no conflicts

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