Ignore:
Timestamp:
05/19/11 19:06:32 (13 years ago)
Author:
hozdoba
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • XMLIO_V2/dev/dev_rv/src/xmlio/linear_buffer.cpp

    r196 r198  
    3434 
    3535      void CLinearBuffer::clear(void) 
    36       { this->bdata.clear(); this->p_write = 0; } 
    37  
     36      {  
     37         this->bdata.clear(); 
     38         //SuperClass::fillData('\0', SuperClass::getSize(), 0); 
     39         this->p_write = 0; 
     40      } 
     41       
     42      //--------------------------------------------------------------- 
     43       
    3844      StdSize CLinearBuffer::getUsedSize(void) const 
    39       { return (this->p_write); } 
    40  
     45      {  
     46         return (this->p_write);  
     47      } 
     48       
     49      //--------------------------------------------------------------- 
     50       
    4151      StdSize CLinearBuffer::getUnusedSize(void) const 
    42       { return (SuperClass::getSize() - this->getUsedSize()); } 
     52      { 
     53          return (SuperClass::getSize() - this->getUsedSize());  
     54      } 
    4355 
    4456      //--------------------------------------------------------------- 
Note: See TracChangeset for help on using the changeset viewer.