/* * Copyright 2004 Perforce Software. All rights reserved. * * Developed by Data Shades Ltd. */ #ifndef INC_UNISTRBUF #define INC_UNISTRBUF #include <tchar.h> #include "PerforceAPI.h" /* * Unicode StrBuf */ class UniStrBuf : public StrBuf { public: void Append( const TCHAR *buf ); void Append( const TCHAR *buf, int len ); void Append( const StrPtr *s ); void Set( const TCHAR *buf ); void Set( const TCHAR *buf, int len ); void Set( const StrPtr *s ); TCHAR *Text() const {return (TCHAR *)StrBuf::Text();} int Length() const; }; #endif
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 11893 | Robert Cowham |
Populate -o //guest/robert_cowham/perforce/P4OFC/main/... //guest/robert_cowham/perforce/P4OFC/icm/.... |
||
//guest/robert_cowham/perforce/P4OFC/main/libp4gt/UniStrBuf.h | |||||
#1 | 10843 | Robert Cowham |
Initial version of P4OFC source code. See README.txt (and LICENSE.txt and doc\P4OFC-Design.docx) |