update dev300-m58
[ooovba.git] / package / inc / Inflater.hxx
blob7108960b2f697315395358552f0c3baf5e79373f
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: Inflater.hxx,v $
10 * $Revision: 1.13 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef _INFLATER_HXX_
31 #define _INFLATER_HXX_
33 #include <com/sun/star/uno/Sequence.hxx>
35 extern "C"
37 typedef struct z_stream_s z_stream;
39 class Inflater
41 protected:
42 sal_Bool bFinish, bFinished, bSetParams, bNeedDict;
43 sal_Int32 nOffset, nLength, nLastInflateError;
44 z_stream* pStream;
45 com::sun::star::uno::Sequence < sal_Int8 > sInBuffer;
46 sal_Int32 doInflateBytes (com::sun::star::uno::Sequence < sal_Int8 > &rBuffer, sal_Int32 nNewOffset, sal_Int32 nNewLength);
48 public:
49 Inflater(sal_Bool bNoWrap = sal_False);
50 ~Inflater();
51 void SAL_CALL setInput( const ::com::sun::star::uno::Sequence< sal_Int8 >& rBuffer );
52 sal_Bool SAL_CALL needsDictionary( );
53 sal_Bool SAL_CALL finished( );
54 sal_Int32 SAL_CALL doInflateSegment( ::com::sun::star::uno::Sequence< sal_Int8 >& rBuffer, sal_Int32 nNewOffset, sal_Int32 nNewLength );
55 void SAL_CALL end( );
57 sal_Int32 getLastInflateError() { return nLastInflateError; }
60 #endif