Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/network/src/lib/network/network_protocol.cc @ 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: 1.2 KB
Line 
1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10   
11   ### File Specific:
12   main-programmer: Benjamin Wuest
13   co-programmer: ...
14*/
15
16/* this is for debug output. It just says, that all calls to PRINT() belong to the DEBUG_MODULE_NETWORK module
17   For more information refere to https://www.orxonox.net/cgi-bin/trac.cgi/wiki/DebugOutput
18*/
19#define DEBUG_MODULE_NETWORK
20
21//#include ...
22
23/* include my own header */
24#include "network_protocol.h"
25
26/* include this file, it contains some default definitions */
27#include "netdefs.h"
28
29/* using namespace std is default, this needs to be here */
30using namespace std;
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52/**
53  standard constructor
54*/
55NetworkProtocol::NetworkProtocol()
56{
57  /* set the class id for the base object */
58  this->setClassID(CL_NETWORK_PROTOCOL, "NetworkProtocol");
59}
60
61/**
62  standard destructor
63*/
64NetworkProtocol::~NetworkProtocol()
65{}
66
67/**
68
69*/
70NetworkProtocol::writeDataField( /* Attribute: Any*/ )
71{
72}
Note: See TracBrowser for help on using the repository browser.