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

Diff for /pegasus/src/Pegasus/Common/XmlWriter.h between version 1.75 and 1.76

version 1.75, 2005/10/31 17:39:12 version 1.76, 2005/11/07 23:15:59
Line 69 
Line 69 
 #include <Pegasus/Common/ContentLanguages.h>  // l10n #include <Pegasus/Common/ContentLanguages.h>  // l10n
 #include <Pegasus/Common/AcceptLanguages.h>   // l10n #include <Pegasus/Common/AcceptLanguages.h>   // l10n
 #include <Pegasus/Common/Buffer.h> #include <Pegasus/Common/Buffer.h>
   #include <Pegasus/Common/StrLit.h>
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
Line 558 
Line 559 
     Buffer& out,     Buffer& out,
     const char* x);     const char* x);
  
 PEGASUS_COMMON_LINKAGE Buffer& operator<<(Buffer& out, char x);  inline Buffer& operator<<(Buffer& out, char x)
   {
       out.append(x);
       return out;
   }
   
   inline Buffer& operator<<(Buffer& out, const char* s)
   {
       out.append(s, strlen(s));
       return out;
   }
  
 PEGASUS_COMMON_LINKAGE Buffer& operator<<(Buffer& out, const Char16& x); PEGASUS_COMMON_LINKAGE Buffer& operator<<(Buffer& out, const Char16& x);
  


Legend:
Removed from v.1.75  
changed lines
  Added in v.1.76

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2