Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/network/synchronizeable_var/synchronizeable_uint.h

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

orxonox/trunk: merged the proxy bache back with no conflicts

File size: 470 bytes
RevLine 
[7444]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
[9406]10#include "synchronizeable_int.h"
11
[7444]12class SynchronizeableUInt : public SynchronizeableInt {
13
14  public:
[9656]15    SynchronizeableUInt( unsigned int * ptrIn, unsigned int * ptrOut, std::string name, int permission, int priority = 0 );
[7444]16    virtual ~SynchronizeableUInt();
[9406]17
[7578]18    virtual void debug();
[7444]19
20};
21
22#endif /* _PROTO_CLASS_H */
Note: See TracBrowser for help on using the repository browser.