Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/network/src/lib/network/synchronizeable.cc @ 5648

Last change on this file since 5648 was 5564, checked in by snellen, 19 years ago

synchronizeable.h and synchronizeable.cc updated

File size: 1010 bytes
RevLine 
[5523]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
[5547]11
[5523]12### File Specific:
13   main-programmer: Silvan Nellen
14   co-programmer: ...
[5547]15*/
[5523]16
[5547]17#include "synchronizeable.h"
18#include "netdefs.h"
[5529]19
[5547]20/**
[5548]21                   \brief default constructor
[5547]22 */
[5523]23Synchronizeable::Synchronizeable()
24{
25
26
27}
28
[5547]29/**
30                   \brief default destructor deletes all unneded stuff
31 */
32Synchronizeable::~Synchronizeable()
33{
[5523]34
[5547]35
36
37
38}
39
40/**
41                          \brief write data to NetworkStream
42 */
[5564]43 void Synchronizeable::writeByteStream(byte* data)
[5523]44{
45
46
47
[5547]48}
[5523]49
[5547]50
51/**
[5564]52                                 \brief read data from NetworkStream
[5547]53 */
[5564]54 byte* Synchronizeable::readByteStream()
[5547]55{
56
57
58
59
[5523]60}
[5547]61
[5548]62 void Synchronizeable::writeDebug()
[5547]63{
64
65}
66
[5548]67 void Synchronizeable::readDebug()
[5547]68{
69
70
71
72
73}
Note: See TracBrowser for help on using the repository browser.