aboutsummaryrefslogtreecommitdiff
path: root/src/fstring.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/fstring.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/fstring.h b/src/fstring.h
index 751beb8..877e5a7 100644
--- a/src/fstring.h
+++ b/src/fstring.h
@@ -245,6 +245,18 @@ namespace Bu
245 return (*this); 245 return (*this);
246 } 246 }
247 247
248 void set( const chr *pData )
249 {
250 clear();
251 append( pData );
252 }
253
254 void set( const chr *pData, long nSize )
255 {
256 clear();
257 append( pData, nSize );
258 }
259
248 MyType &operator =( const MyType &rSrc ) 260 MyType &operator =( const MyType &rSrc )
249 { 261 {
250 //if( rSrc.isFlat() ) 262 //if( rSrc.isFlat() )