diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-04-10 20:16:19 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-04-10 20:16:19 +0000 |
commit | 070374dde0f53bff26078550997f7682e84412e5 (patch) | |
tree | d9088b02e9b5f08f25d7f07f3a26035eea00e8e9 /src/tests | |
parent | e7ab7cb1604c04763bbdcece5885e6ce5aa100b4 (diff) | |
download | libbu++-070374dde0f53bff26078550997f7682e84412e5.tar.gz libbu++-070374dde0f53bff26078550997f7682e84412e5.tar.bz2 libbu++-070374dde0f53bff26078550997f7682e84412e5.tar.xz libbu++-070374dde0f53bff26078550997f7682e84412e5.zip |
I did it, the streams don't start with an S now.
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/archive.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/archive.cpp b/src/tests/archive.cpp index 5b7e285..2035aa6 100644 --- a/src/tests/archive.cpp +++ b/src/tests/archive.cpp | |||
@@ -1,11 +1,11 @@ | |||
1 | #include "archive.h" | 1 | #include "archive.h" |
2 | #include "sfile.h" | 2 | #include "file.h" |
3 | 3 | ||
4 | using namespace Bu; | 4 | using namespace Bu; |
5 | 5 | ||
6 | int main() | 6 | int main() |
7 | { | 7 | { |
8 | SFile f("test.dat", "wb"); | 8 | File f("test.dat", "wb"); |
9 | Archive ar( f, Archive::save ); | 9 | Archive ar( f, Archive::save ); |
10 | 10 | ||
11 | std::string s("Hello there"); | 11 | std::string s("Hello there"); |