Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 30, 2006, 1:50:25 PM (18 years ago)
Author:
rennerc
Message:

finished some SynchronizeableVars classes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/lib/network/synchronizeable_var/synchronizeable_var.cc

    r7444 r7459  
    2424SynchronizeableVar::SynchronizeableVar ( void * ptrIn, void * ptrOut, std::string name, int length, int permission, int priority)
    2525{
     26  assert( ptrIn );
     27  assert( ptrOut );
     28 
    2629  this->ptrIn = ptrIn;
    2730  this->ptrOut = ptrOut;
     
    4144}
    4245
    43 /**
    44  * write var data to byte buffer
    45  * @param buf pointer to write to
    46  * @param maxLength writeToBuf will not write more than maxLength bytes
    47  * @return number bytes written
    48  */
    49 int SynchronizeableVar::writeToBuf( byte * buf, int maxLength )
    50 {
    51 #warning implement this
    52 }
    53 
    54 /**
    55  * read var data from byte buffer
    56  * @param buf pointer to read from
    57  * @param maxLength readFromBuf will not read more than maxLength bytes
    58  * @return number bytes read
    59  */
    60 int SynchronizeableVar::readFromBuf( byte * buf, int maxLength )
    61 {
    62 #warning implement this
    63 }
Note: See TracChangeset for help on using the changeset viewer.