2000-11-13 06:38:03 -06:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 10:23:58 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-11-13 06:38:03 -06:00
|
|
|
*
|
2008-04-10 10:23:58 -05:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2000-11-13 06:38:03 -06:00
|
|
|
*
|
2008-04-10 10:23:58 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-11-13 06:38:03 -06:00
|
|
|
*
|
2008-04-10 10:23:58 -05:00
|
|
|
* $RCSfile: CRC32.hxx,v $
|
2008-06-20 01:16:29 -05:00
|
|
|
* $Revision: 1.13 $
|
2000-11-13 06:38:03 -06:00
|
|
|
*
|
2008-04-10 10:23:58 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-11-13 06:38:03 -06:00
|
|
|
*
|
2008-04-10 10:23:58 -05:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2000-11-13 06:38:03 -06:00
|
|
|
*
|
2008-04-10 10:23:58 -05:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2000-11-13 06:38:03 -06:00
|
|
|
*
|
2008-04-10 10:23:58 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2000-11-13 06:38:03 -06:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
#ifndef _CRC32_HXX
|
|
|
|
#define _CRC32_HXX
|
|
|
|
|
2001-04-27 08:56:07 -05:00
|
|
|
#include <com/sun/star/uno/Sequence.h>
|
2001-05-31 03:37:33 -05:00
|
|
|
#include <com/sun/star/uno/RuntimeException.hpp>
|
2000-11-13 06:38:03 -06:00
|
|
|
|
2001-11-15 12:51:16 -06:00
|
|
|
namespace com { namespace sun { namespace star {
|
|
|
|
namespace io { class XInputStream; }
|
|
|
|
} } }
|
2001-04-27 08:56:07 -05:00
|
|
|
class CRC32
|
2000-11-13 06:38:03 -06:00
|
|
|
{
|
2001-07-04 08:56:37 -05:00
|
|
|
protected:
|
2000-11-13 06:38:03 -06:00
|
|
|
sal_uInt32 nCRC;
|
|
|
|
public:
|
|
|
|
CRC32();
|
2001-04-27 08:56:07 -05:00
|
|
|
~CRC32();
|
2001-12-04 10:53:19 -06:00
|
|
|
|
|
|
|
sal_Int32 SAL_CALL updateStream (::com::sun::star::uno::Reference < ::com::sun::star::io::XInputStream > & xStream)
|
2001-05-31 03:37:33 -05:00
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
2001-04-27 08:56:07 -05:00
|
|
|
void SAL_CALL updateSegment(const ::com::sun::star::uno::Sequence< sal_Int8 > &b, sal_Int32 off, sal_Int32 len)
|
2000-11-13 06:38:03 -06:00
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
2001-04-27 08:56:07 -05:00
|
|
|
void SAL_CALL update(const ::com::sun::star::uno::Sequence< sal_Int8 > &b)
|
2000-11-13 06:38:03 -06:00
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
2001-04-27 08:56:07 -05:00
|
|
|
sal_Int32 SAL_CALL getValue()
|
2000-11-13 06:38:03 -06:00
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
2001-04-27 08:56:07 -05:00
|
|
|
void SAL_CALL reset()
|
2000-11-13 06:38:03 -06:00
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|