From 51f9aa16cbdd78c0b31483df26d0f7e81376f974 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Wed, 23 Jan 2008 16:44:10 +0000 Subject: Added a new helper to the Stream classes, a write function that takes a single Bu::FString reference as a parameter. Unfortunately you need to remember to add "using Stream::write;" to each child class so they can take advantage of it. Strange, no? Also, cleaned up a bunch of header files, I'm trying to move towards headers only including other headers that they absolutely need, otherwise just creating forward decleration sections at the top of each. --- src/archive.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/archive.cpp') diff --git a/src/archive.cpp b/src/archive.cpp index 78fa362..d11f853 100644 --- a/src/archive.cpp +++ b/src/archive.cpp @@ -6,6 +6,8 @@ */ #include "bu/archive.h" +#include "bu/stream.h" +#include "bu/archival.h" Bu::Archive::Archive( Stream &rStream, bool bLoading ) : bLoading( bLoading ), -- cgit v1.2.3