HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SYS_BoostStreams.h
Go to the documentation of this file.
1 /*
2  * PROPRIETARY INFORMATION. This software is proprietary to
3  * Side Effects Software Inc., and is not to be reproduced,
4  * transmitted, or disclosed in any way without written permission.
5  *
6  * NAME: SYS_BoostStreams.h
7  *
8  * COMMENTS: This header should be included by anyone wanting to use
9  * boost streams, rather than including the boost header directly.
10  * It provied a namespace mapping and avoids inclusion on platforms
11  * that don't support boost streams.
12  */
13 
14 #ifndef __SYS_BoostStreams_h__
15 #define __SYS_BoostStreams_h__
16 
17 #include <hboost/iostreams/filtering_stream.hpp>
18 #include <hboost/iostreams/filter/gzip.hpp>
19 #include <hboost/iostreams/device/mapped_file.hpp>
20 #include <hboost/iostreams/device/file_descriptor.hpp>
21 namespace bios = hboost::iostreams;
22 
23 #endif