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 #include "storagestream.hxx"
22 #include <com/sun/star/embed/ElementModes.hpp>
24 #include <comphelper/diagnose_ex.hxx>
29 using ::com::sun::star::uno::Reference
;
30 using ::com::sun::star::uno::UNO_SET_THROW
;
31 using ::com::sun::star::embed::XStorage
;
32 using ::com::sun::star::io::XStream
;
34 namespace ElementModes
= ::com::sun::star::embed::ElementModes
;
36 // StorageOutputStream
37 StorageOutputStream::StorageOutputStream( const Reference
< XStorage
>& i_rParentStorage
,
38 const OUString
& i_rStreamName
41 ENSURE_OR_THROW( i_rParentStorage
.is(), "illegal stream" );
43 const Reference
< XStream
> xStream(
44 i_rParentStorage
->openStreamElement( i_rStreamName
, ElementModes::READWRITE
), UNO_SET_THROW
);
45 m_xOutputStream
.set( xStream
->getOutputStream(), UNO_SET_THROW
);
48 StorageOutputStream::~StorageOutputStream()
52 } // namespace dbaccess
54 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */