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 | |
---|
12 | class 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.