Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 13, 2005, 1:44:49 AM (18 years ago)
Author:
bknecht
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/lib/network/data_stream.h

    r5524 r5554  
    1 // Data_stream.h
     1/*!
     2 * @file data_stream.h
     3  *  Main class for a data stream, used for our network stream
     4  *  network stream will get data, and will send it with a network socket
     5  *  to another network stream
    26
    3 class Data_stream
     7*/
     8
     9#ifndef _DATA_STREAM_H
     10#define _DATA_STREAM_H
     11
     12#include "base_object.h"
     13
     14class DataStream : public BaseObject
    415{
     16      DataStream();
     17      ~DataStream();
     18     
    519      protected:
    620      byte inBuffer [];
     
    1125      public void disconnectStream();
    1226     
    13       public virtual void processDate();
     27      public virtual void processData();
    1428     
    1529      protected virtual void write();
     
    1731      protected virtual void read();     
    1832}
     33
     34#endif /* _DATA_STREAM_ */
Note: See TracChangeset for help on using the changeset viewer.