diff options
author | Mike Buland <eichlan@xagasoft.com> | 2010-02-11 00:38:09 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2010-02-11 00:38:09 +0000 |
commit | d61161061bd5998ef4b1fc2aaad2cf4bbd78e90d (patch) | |
tree | f4ea64381d4f0b3b7a9610758c034183098c2e96 /src/fbasicstring.h | |
parent | 79b7b631750b69cbe06daedb0453306595dea6ad (diff) | |
download | libbu++-d61161061bd5998ef4b1fc2aaad2cf4bbd78e90d.tar.gz libbu++-d61161061bd5998ef4b1fc2aaad2cf4bbd78e90d.tar.bz2 libbu++-d61161061bd5998ef4b1fc2aaad2cf4bbd78e90d.tar.xz libbu++-d61161061bd5998ef4b1fc2aaad2cf4bbd78e90d.zip |
Started working on a CSV reader, it's pretty much done, the CSV writer is just
a shell, but I may finish it soon, and started work on NewLine, a filter that
converts newlines in text streams between the different OS standards.
Also added some more helper operators to fbasicstring.
Diffstat (limited to '')
-rw-r--r-- | src/fbasicstring.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/fbasicstring.h b/src/fbasicstring.h index 838fbc2..535df55 100644 --- a/src/fbasicstring.h +++ b/src/fbasicstring.h | |||
@@ -796,7 +796,7 @@ namespace Bu | |||
796 | append( &cData, 1 ); | 796 | append( &cData, 1 ); |
797 | } | 797 | } |
798 | } | 798 | } |
799 | 799 | ||
800 | /** | 800 | /** |
801 | * Append another FString to this one. | 801 | * Append another FString to this one. |
802 | *@param sData (MyType &) The FString to append. | 802 | *@param sData (MyType &) The FString to append. |
@@ -1280,6 +1280,13 @@ namespace Bu | |||
1280 | return (*this); | 1280 | return (*this); |
1281 | } | 1281 | } |
1282 | 1282 | ||
1283 | MyType &operator+=( const MyType::const_iterator &i ) | ||
1284 | { | ||
1285 | append( i, i+1 ); | ||
1286 | |||
1287 | return (*this); | ||
1288 | } | ||
1289 | |||
1283 | /** | 1290 | /** |
1284 | * Plus equals operator for FString. | 1291 | * Plus equals operator for FString. |
1285 | *@param cData (const chr) The character to append to your FString. | 1292 | *@param cData (const chr) The character to append to your FString. |