diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-06-28 21:58:47 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-06-28 21:58:47 +0000 |
commit | afb50f535dd60b485a38f1f1f692b3303e28fecc (patch) | |
tree | a961ea827ff8577dc237c4740525737e932869c8 /src/fstring.cpp | |
parent | 66d1eb52b7f3023cfee5c10792a55b6af08eebe4 (diff) | |
download | libbu++-afb50f535dd60b485a38f1f1f692b3303e28fecc.tar.gz libbu++-afb50f535dd60b485a38f1f1f692b3303e28fecc.tar.bz2 libbu++-afb50f535dd60b485a38f1f1f692b3303e28fecc.tar.xz libbu++-afb50f535dd60b485a38f1f1f692b3303e28fecc.zip |
The FString has more things that it can do...now.
Diffstat (limited to 'src/fstring.cpp')
-rw-r--r-- | src/fstring.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/fstring.cpp b/src/fstring.cpp index 56d2173..0b5a970 100644 --- a/src/fstring.cpp +++ b/src/fstring.cpp | |||
@@ -12,3 +12,9 @@ template<> bool Bu::__cmpHashKeys<Bu::FString>( | |||
12 | return a == b; | 12 | return a == b; |
13 | } | 13 | } |
14 | 14 | ||
15 | std::ostream& operator<< (std::ostream &os, Bu::FString &val ) | ||
16 | { | ||
17 | os.write( val.getStr(), val.getSize() ); | ||
18 | return os; | ||
19 | } | ||
20 | |||