1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef STORAGESTREAM_HXX
21 #define STORAGESTREAM_HXX
23 #include <dbaccess/dbaccessdllapi.h>
25 #include <com/sun/star/embed/XStorage.hpp>
26 #include <com/sun/star/uno/XComponentContext.hpp>
28 //........................................................................
31 //........................................................................
33 //====================================================================
34 //= StorageOutputStream
35 //====================================================================
36 /** convenience wrapper around a stream living in a storage
38 class DBACCESS_DLLPRIVATE StorageOutputStream
42 const ::com::sun::star::uno::Reference
< ::com::sun::star::uno::XComponentContext
>& i_rContext
,
43 const ::com::sun::star::uno::Reference
< ::com::sun::star::embed::XStorage
>& i_rParentStorage
,
44 const OUString
& i_rStreamName
46 virtual ~StorageOutputStream();
48 /** simply calls closeOutput on our output stream, override to extend/modify this behavior
53 const ::com::sun::star::uno::Reference
< ::com::sun::star::uno::XComponentContext
>&
54 getContext() const { return m_rContext
; }
55 const ::com::sun::star::uno::Reference
< ::com::sun::star::io::XOutputStream
>&
56 getOutputStream() const { return m_xOutputStream
; }
59 const ::com::sun::star::uno::Reference
< ::com::sun::star::uno::XComponentContext
>&
61 ::com::sun::star::uno::Reference
< ::com::sun::star::io::XOutputStream
>
65 //====================================================================
66 //= StorageInputStream
67 //====================================================================
68 /** convenience wrapper around a stream living in a storage
70 class DBACCESS_DLLPRIVATE StorageInputStream
74 const ::com::sun::star::uno::Reference
< ::com::sun::star::uno::XComponentContext
>& i_rContext
,
75 const ::com::sun::star::uno::Reference
< ::com::sun::star::embed::XStorage
>& i_rParentStorage
,
76 const OUString
& i_rStreamName
78 virtual ~StorageInputStream();
80 /** simply calls closeInput on our input stream, override to extend/modify this behavior
85 const ::com::sun::star::uno::Reference
< ::com::sun::star::uno::XComponentContext
>&
86 getContext() const { return m_rContext
; }
87 const ::com::sun::star::uno::Reference
< ::com::sun::star::io::XInputStream
>&
88 getInputStream() const { return m_xInputStream
; }
91 const ::com::sun::star::uno::Reference
< ::com::sun::star::uno::XComponentContext
>&
93 ::com::sun::star::uno::Reference
< ::com::sun::star::io::XInputStream
>
97 //........................................................................
98 } // namespace dbaccess
99 //........................................................................
101 #endif // STORAGESTREAM_HXX
103 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */