(file) Return to Buffer.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/Buffer.h between version 1.15 and 1.16

version 1.15, 2009/12/15 11:39:33 version 1.16, 2010/01/29 10:08:02
Line 72 
Line 72 
      */      */
     const char* getData() const;     const char* getData() const;
  
       /**
           Returns a pointer to the character buffer with the Buffer contents.
           This function does NOT append a null character.
           Resulting data should NOT be used with C string processing functions.
       */
       char* getContentPtr();
   
     char get(Uint32 i) const;     char get(Uint32 i) const;
  
     void set(Uint32 i, char x);     void set(Uint32 i, char x);
Line 157 
Line 164 
     return _rep->data;     return _rep->data;
 } }
  
   inline char* Buffer::getContentPtr()
   {
       return _rep->data;
   }
   
 inline char Buffer::get(Uint32 i) const inline char Buffer::get(Uint32 i) const
 { {
     return _rep->data[i];     return _rep->data[i];


Legend:
Removed from v.1.15  
changed lines
  Added in v.1.16

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2