Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/proxy: removed the dependency of the netdefs in pnode, which should decrease compile time enormously.

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.