Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9869 in orxonox.OLD for trunk/src/lib/network/data_stream.cc


Ignore:
Timestamp:
Oct 3, 2006, 12:19:30 AM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: merged the new_class_id branche back to the trunk.
merged with command:
svn merge https://svn.orxonox.net/orxonox/branches/new_class_id trunk -r9683:HEAD
no conflicts… puh..

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/network/data_stream.cc

    r9406 r9869  
    2020/* using namespace std is default, this needs to be here */
    2121
    22 
    23 
     22ObjectListDefinition(DataStream);
    2423
    2524/**
     
    2827DataStream::DataStream()
    2928{
    30   this->setClassID(CL_DATA_STREAM, "DataStream");
    3129  this->upBuffer = new byte[DATA_STREAM_BUFFER_SIZE];
    3230  this->downBuffer = new byte[DATA_STREAM_BUFFER_SIZE];
     
    3836DataStream::DataStream(DataStream& inStream, DataStream& outStream)
    3937{
    40     this->setClassID(CL_DATA_STREAM, "DataStream");
     38  this->registerObject(this, DataStream::_objectList);
    4139    this->downStream = &outStream;
    4240    this->upStream = &inStream;
Note: See TracChangeset for help on using the changeset viewer.