00001 /* 00002 * PROPRIETARY INFORMATION. This software is proprietary to 00003 * Side Effects Software Inc., and is not to be reproduced, 00004 * transmitted, or disclosed in any way without written permission. 00005 * 00006 * Produced by: 00007 * Side Effects Software Inc 00008 * 123 Front Street West, Suite 1401 00009 * Toronto, Ontario 00010 * Canada M5J 2M2 00011 * 416-504-9876 00012 * 00013 * NAME: UT_BoostStreams.h 00014 * 00015 * COMMENTS: This header should be included by anyone wanting to use 00016 * boost streams, rather than including the boost header directly. 00017 * It provied a namespace mapping and avoids inclusion on platforms 00018 * that don't support boost streams. 00019 */ 00020 00021 #ifndef __UT_BoostStreams_h__ 00022 #define __UT_BoostStreams_h__ 00023 00024 #if !defined(GAMEOS) 00025 #include <boost/iostreams/filtering_stream.hpp> 00026 #include <boost/iostreams/filter/gzip.hpp> 00027 namespace bios = boost::iostreams; 00028 #endif 00029 00030 #endif
1.5.9