Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/network/synchronizeable_var/synchronizeable_vector.h @ 9940

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

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

File size: 906 bytes
RevLine 
[7444]1/*!
2 * @file synchronizeable_vector.h
3 * @brief Definition of SynchronizeableVector
4*/
5
6#ifndef _SYNCHRONIZEABLE_VECTOR_H
7#define _SYNCHRONIZEABLE_VECTOR_H
8
[9406]9#include "synchronizeable_var.h"
10
[7444]11#include "vector.h"
12
13class SynchronizeableVector : public SynchronizeableVar {
14
15  public:
[9656]16    SynchronizeableVector( Vector * ptrIn, Vector * ptrOut, std::string name, int permission, int priority = 0 );
[7444]17    virtual ~SynchronizeableVector();
[9406]18
[7444]19    virtual int writeToBuf( byte * buf, int maxLength );
20    virtual int readFromBuf( byte * buf, int maxLength );
[9406]21
[7459]22    /**
23     * check if writeToBuf will return the same size every time
24     * @return true if same size every time
25     */
[7578]26    virtual bool hasStaticSize(){ return true; }
[9406]27
[7578]28    virtual void debug();
[9406]29
[7444]30  private:
31    Vector * vPtrIn;       //!< pointer to data (read)
32    Vector * vPtrOut;      //!< pointer to data (write)
33
34};
35
36#endif /* _PROTO_CLASS_H */
Note: See TracBrowser for help on using the repository browser.