(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.14 and 1.14.2.1

version 1.14, 2008/12/16 18:55:59 version 1.14.2.1, 2013/01/08 13:36:16
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 149 
Line 156 
     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.14  
changed lines
  Added in v.1.14.2.1

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2