Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 5613 was 5613, checked in by patrick, 18 years ago

added the network_protocol.{cc,h} from bwuest

File size: 353 bytes
Line 
1/*!
2
3*/
4
5#ifndef _NETWORK_PROTOCOL_H
6#define _NETWORK_PROTOCOL_H
7
8#include "base_object.h"
9
10/*!
11
12*/
13class NetworkProtocol : virtual public BaseObject
14{
15  public:
16    NetworkProtocol();
17    ~NetworkProtocol():
18
19    void writeDataField( /* Attribute: Any*/ );
20
21  private:
22    dataFields dFields;
23
24}
25
26#endif //_NETWORK_PROTOCOL_H
Note: See TracBrowser for help on using the repository browser.