bump product version to 4.1.6.2
[LibreOffice.git] / dbaccess / source / core / recovery / storagestream.hxx
blobcf227d118d89c269696d47e83e9a4569cf63051c
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 //........................................................................
29 namespace dbaccess
31 //........................................................................
33 //====================================================================
34 //= StorageOutputStream
35 //====================================================================
36 /** convenience wrapper around a stream living in a storage
38 class DBACCESS_DLLPRIVATE StorageOutputStream
40 public:
41 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
50 virtual void close();
52 protected:
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; }
58 private:
59 const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >&
60 m_rContext;
61 ::com::sun::star::uno::Reference< ::com::sun::star::io::XOutputStream >
62 m_xOutputStream;
65 //====================================================================
66 //= StorageInputStream
67 //====================================================================
68 /** convenience wrapper around a stream living in a storage
70 class DBACCESS_DLLPRIVATE StorageInputStream
72 public:
73 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
82 virtual void close();
84 protected:
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; }
90 private:
91 const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >&
92 m_rContext;
93 ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream >
94 m_xInputStream;
97 //........................................................................
98 } // namespace dbaccess
99 //........................................................................
101 #endif // STORAGESTREAM_HXX
103 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */