Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/network/src/lib/network/data_stream.cc @ 5554

Last change on this file since 5554 was 5554, checked in by bknecht, 19 years ago

added comments to data_stream files (.cc, .h), data_stream should now compile and is ready for implementation

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 Knecht
13   co-programmer: ...
14*/
15
16/* include Data_stream Header */
17#include "Data_stream.h"
18
19
20#include "netdefs.h"
21
22/* using namespace std is default, this needs to be here */
23using namespace std;
24
25
26/**
27 *  standart constructor
28 */
29void DataStream::DataStream()
30{ 
31     
32}
33
34/**
35 *  standart deconstructor
36 */
37void DataStream::~DataStream()
38{
39     
40}
41
42/**
43 *  connects the stream to write and read on sockets
44 */
45void DataStream::connectStream()
46{
47     
48}
49
50
51/**
52 *  disconnects the running stream
53 */
54void DataStream::disconnectStream()
55{
56     
57}
58
59
60/**
61 *  processing incoming or outgoing data
62 */
63void DataStream::processData()
64{
65     
66}
67
68
69/**
70 *  method to write data into a networksocket
71 */
72void DataStream::write()
73{
74     
75}
76
77
78/**
79 * method to read data from a networksocket
80 */
81void DataStream::read()
82{
83     
84}
Note: See TracBrowser for help on using the repository browser.