merge the formfield patch from ooo-build
[ooovba.git] / ucb / source / ucp / gio / gio_outputstream.hxx
blob2e5479bece514d0001de6a63846c4e15119886f6
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: gio_outputstream.hxx,v $
10 * $Revision: 1.2 $
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 ************************************************************************/
31 #ifndef GIO_OUTPUTSTREAM_HXX
32 #define GIO_OUTPUTSTREAM_HXX
34 #include <sal/types.h>
35 #include <rtl/ustring.hxx>
36 #include <cppuhelper/weak.hxx>
38 #include <com/sun/star/io/XOutputStream.hpp>
39 #include <com/sun/star/io/XTruncate.hpp>
40 #include <com/sun/star/io/XSeekable.hpp>
42 #include "gio_seekable.hxx"
44 namespace gio
47 class OutputStream :
48 public ::com::sun::star::io::XOutputStream,
49 public Seekable
51 private:
52 GFileOutputStream *mpStream;
54 public:
55 OutputStream ( GFileOutputStream *pStream );
56 virtual ~OutputStream();
58 // XInterface
59 virtual com::sun::star::uno::Any SAL_CALL queryInterface(const ::com::sun::star::uno::Type & type )
60 throw( ::com::sun::star::uno::RuntimeException );
61 virtual void SAL_CALL acquire( void ) throw () { OWeakObject::acquire(); }
62 virtual void SAL_CALL release( void ) throw() { OWeakObject::release(); }
64 // XOutputStream
65 virtual void SAL_CALL writeBytes( const com::sun::star::uno::Sequence< sal_Int8 >& aData )
66 throw( com::sun::star::io::NotConnectedException,
67 com::sun::star::io::BufferSizeExceededException,
68 com::sun::star::io::IOException,
69 com::sun::star::uno::RuntimeException);
71 virtual void SAL_CALL flush( void )
72 throw( com::sun::star::io::NotConnectedException,
73 com::sun::star::io::BufferSizeExceededException,
74 com::sun::star::io::IOException,
75 com::sun::star::uno::RuntimeException);
78 virtual void SAL_CALL closeOutput( void )
79 throw( com::sun::star::io::NotConnectedException,
80 com::sun::star::io::IOException,
81 com::sun::star::uno::RuntimeException );
84 } // namespace gio
85 #endif