Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/proxy/src/lib/network/synchronizeable_var/synchronizeable_quaternion.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: 1022 bytes
Line 
1/*!
2 * @file synchronizeable_quaternion.h
3 * @brief Definition of SynchronizeableQuaternion
4*/
5
6#include "synchronizeable_var/synchronizeable_var.h"
7
8#ifndef _SYNCHRONIZEABLE_QUATERNION_H
9#define _SYNCHRONIZEABLE_QUATERNION_H
10
11#include "quaternion.h"
12
13class SynchronizeableQuaternion : public SynchronizeableVar {
14
15  public:
16    SynchronizeableQuaternion( Quaternion * ptrIn, Quaternion * ptrOut, std::string name, int permission = PERMISSION_MASTER_SERVER, int priority = 0 );
17    virtual ~SynchronizeableQuaternion();
18   
19    virtual int writeToBuf( byte * buf, int maxLength );
20    virtual int readFromBuf( byte * buf, int maxLength );
21       
22    /**
23     * check if writeToBuf will return the same size every time
24     * @return true if same size every time
25     */
26    virtual bool hasStaticSize(){ return true; };
27   
28    virtual void debug();
29   
30  private:
31    Quaternion * vPtrIn;       //!< pointer to data (read)
32    Quaternion * vPtrOut;      //!< pointer to data (write)
33
34};
35
36#endif /* _PROTO_CLASS_H */
Note: See TracBrowser for help on using the repository browser.