merge the formfield patch from ooo-build
[ooovba.git] / ucb / source / ucp / gio / gio_seekable.hxx
blob1c25a7aaac757db1d3ba3d70079a12047f135ccd
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_seekable.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_SEEKABLE_HXX
32 #define GIO_SEEKABLE_HXX
34 #include <sal/types.h>
35 #include <rtl/ustring.hxx>
36 #include <cppuhelper/weak.hxx>
38 #include <com/sun/star/io/XTruncate.hpp>
39 #include <com/sun/star/io/XSeekable.hpp>
41 #include <gio/gio.h>
43 namespace gio
46 class Seekable : public ::com::sun::star::io::XTruncate,
47 public ::com::sun::star::io::XSeekable,
48 public ::cppu::OWeakObject
50 private:
51 GSeekable *mpStream;
52 public:
53 Seekable( GSeekable *pStream );
54 virtual ~Seekable();
56 // XInterface
57 virtual com::sun::star::uno::Any SAL_CALL queryInterface(const ::com::sun::star::uno::Type & type )
58 throw( ::com::sun::star::uno::RuntimeException );
59 virtual void SAL_CALL acquire( void ) throw () { OWeakObject::acquire(); }
60 virtual void SAL_CALL release( void ) throw() { OWeakObject::release(); }
62 // XSeekable
63 virtual void SAL_CALL seek( sal_Int64 location )
64 throw( ::com::sun::star::lang::IllegalArgumentException,
65 ::com::sun::star::io::IOException,
66 ::com::sun::star::uno::RuntimeException );
68 virtual sal_Int64 SAL_CALL getPosition()
69 throw( ::com::sun::star::io::IOException,
70 ::com::sun::star::uno::RuntimeException );
72 virtual sal_Int64 SAL_CALL getLength()
73 throw( ::com::sun::star::io::IOException,
74 ::com::sun::star::uno::RuntimeException );
76 // XTruncate
77 virtual void SAL_CALL truncate( void )
78 throw( com::sun::star::io::IOException,
79 com::sun::star::uno::RuntimeException );
82 } // namespace gio
83 #endif