Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/new_class_id/src/lib/network/network_protocol.h @ 9690

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

some network-stuff

File size: 806 bytes
RevLine 
[5613]1/*!
2
3*/
4
5#ifndef _NETWORK_PROTOCOL_H
6#define _NETWORK_PROTOCOL_H
7
[6139]8/* include base_object.h since all classes are derived from this one */
[5613]9#include "base_object.h"
10
[5736]11/* include this file, it contains some default definitions */
12#include "netdefs.h"
[5735]13
14typedef struct Header
15{
[6341]16  int synchronizeableID;
17  int length;
[5735]18};
19
[5736]20class Synchronizeable;
21
[5613]22/*!
23
24*/
25class NetworkProtocol : virtual public BaseObject
26{
[9690]27  NewObjectListDeclaration(NetworkProtocol);
[5613]28  public:
29    NetworkProtocol();
[6981]30    virtual ~NetworkProtocol();
[5613]31
[6139]32    int createHeader(byte* data, int length, int bufferLength, const Synchronizeable& source);
[5738]33    Header extractHeader(byte* data, int length);
[5735]34
[5613]35  private:
[5736]36    unsigned int headerLength; //The Length of the Header in bytes
[5617]37};
[5613]38
39#endif //_NETWORK_PROTOCOL_H
Note: See TracBrowser for help on using the repository browser.