00001
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00032
00033 #ifndef GROOVX_RUTZ_BZIP2STREAM_H_UTC20060614220054_DEFINED
00034 #define GROOVX_RUTZ_BZIP2STREAM_H_UTC20060614220054_DEFINED
00035
00036 #include <ios>
00037 #include <iosfwd>
00038
00039 namespace rutz
00040 {
00041 class fstring;
00042
00043 template <class T> class shared_ptr;
00044
00048 shared_ptr<std::ostream> obzip2open(const rutz::fstring& filename,
00049 std::ios::openmode flags =
00050 std::ios::openmode(0));
00051
00053 shared_ptr<std::ostream> obzip2open(const char* filename,
00054 std::ios::openmode flags =
00055 std::ios::openmode(0));
00056
00060 shared_ptr<std::istream> ibzip2open(const rutz::fstring& filename,
00061 std::ios::openmode flags =
00062 std::ios::openmode(0));
00063
00065 shared_ptr<std::istream> ibzip2open(const char* filename,
00066 std::ios::openmode flags =
00067 std::ios::openmode(0));
00068 }
00069
00070 static const char vcid_groovx_rutz_bzip2stream_h_utc20060614220054[] = "$Id: bzip2stream.h 10065 2007-04-12 05:54:56Z rjpeters $ $HeadURL: file:///lab/rjpeters/svnrepo/code/trunk/groovx/src/rutz/bzip2stream.h $";
00071 #endif // !GROOVX_RUTZ_BZIP2STREAM_H_UTC20060614220054DEFINED