Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/network/src/lib/network/network_stream.cc @ 5607

Last change on this file since 5607 was 5607, checked in by bottac, 18 years ago
File size: 1.1 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: claudio
13   co-programmer:
14*/
15
16
17/* this is for debug output. It just says, that all calls to PRINT() belong to the DEBUG_MODULE_NETWORK module
18   For more information refere to https://www.orxonox.net/cgi-bin/trac.cgi/wiki/DebugOutput
19*/
20#define DEBUG_MODULE_NETWORK
21
22
23/* include your own header */
24#include "network_stream.h"
25
26/* probably unnecessary */
27using namespace std;
28
29
30NetworkStream::NetworkStream()
31{
32  /* set the class id for the base object */
33  this->setClassID(CL_NETWORK_STREAM, "NetworkStream");
34
35  /* initialize the references */
36  this->networkSockets = new NetworkSocket();
37  this->synchronizeables = NULL;
38  this->connectionMonitor = new ConnectionMonitor();
39
40}
41
42NetworkStream::~NetworkStream()
43{
44
45}
46
47void NetworkStream::processData()
48{
49}
50
Note: See TracBrowser for help on using the repository browser.