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 INCLUDED_PACKAGE_SOURCE_XSTOR_XSTORAGE_HXX
21 #define INCLUDED_PACKAGE_SOURCE_XSTOR_XSTORAGE_HXX
23 #include <com/sun/star/uno/Sequence.hxx>
24 #include <com/sun/star/embed/XStorage2.hpp>
25 #include <com/sun/star/embed/XOptimizedStorage.hpp>
26 #include <com/sun/star/embed/XHierarchicalStorageAccess2.hpp>
27 #include <com/sun/star/embed/XStorageRawAccess.hpp>
28 #include <com/sun/star/embed/XTransactedObject.hpp>
29 #include <com/sun/star/embed/XTransactionBroadcaster.hpp>
30 #include <com/sun/star/embed/XEncryptionProtectedStorage.hpp>
31 #include <com/sun/star/embed/XRelationshipAccess.hpp>
32 #include <com/sun/star/util/XModifiable.hpp>
33 #include <com/sun/star/container/XNameContainer.hpp>
34 #include <com/sun/star/beans/XPropertySet.hpp>
35 #include <com/sun/star/beans/PropertyValue.hpp>
36 #include <com/sun/star/beans/StringPair.hpp>
37 #include <com/sun/star/io/XStream.hpp>
38 #include <com/sun/star/lang/XSingleServiceFactory.hpp>
39 #include <com/sun/star/lang/XTypeProvider.hpp>
40 #include <com/sun/star/lang/XComponent.hpp>
42 #include <cppuhelper/typeprovider.hxx>
43 #include <cppuhelper/weak.hxx>
44 #include <cppuhelper/weakref.hxx>
45 #include <comphelper/multicontainer2.hxx>
46 #include <comphelper/refcountedmutex.hxx>
47 #include <comphelper/sequenceashashmap.hxx>
48 #include <o3tl/deleter.hxx>
49 #include <rtl/ref.hxx>
51 #include "ohierarchyholder.hxx"
52 #include "disposelistener.hxx"
57 #include <string_view>
59 namespace com::sun::star::uno
{
60 class XComponentContext
;
63 #define RELINFO_NO_INIT 1
64 #define RELINFO_READ 2
65 #define RELINFO_CHANGED 3
66 #define RELINFO_CHANGED_STREAM 4
67 #define RELINFO_CHANGED_STREAM_READ 5
68 #define RELINFO_BROKEN 6
69 #define RELINFO_CHANGED_BROKEN 7
71 #define STOR_MESS_PRECOMMIT 1
72 #define STOR_MESS_COMMITTED 2
73 #define STOR_MESS_PREREVERT 3
74 #define STOR_MESS_REVERTED 4
76 // a common implementation for an entry
79 struct OWriteStream_Impl
;
81 struct SotElement_Impl
83 OUString m_aOriginalName
;
88 std::unique_ptr
<OStorage_Impl
> m_xStorage
;
89 std::unique_ptr
<OWriteStream_Impl
, o3tl::default_delete
<OWriteStream_Impl
>> m_xStream
;
92 SotElement_Impl(OUString aName
, bool bStor
, bool bNew
);
95 // Main storage implementation
99 struct StorageHolder_Impl
101 OStorage
* m_pPointer
;
102 css::uno::WeakReference
< css::embed::XStorage
> m_xWeakRef
;
104 explicit inline StorageHolder_Impl( OStorage
* pStorage
);
107 class SwitchablePersistenceStream
;
110 typedef std::vector
<StorageHolder_Impl
> StorageHoldersType
;
112 rtl::Reference
<comphelper::RefCountedMutex
> m_xMutex
;
114 OStorage
* m_pAntiImpl
; // only valid if external references exists
115 StorageHoldersType m_aReadOnlyWrapVector
; // only valid if readonly external reference exists
117 sal_Int32 m_nStorageMode
; // open mode ( read/write/trunc/nocreate )
118 bool m_bIsModified
; // only modified elements will be sent to the original content
119 bool m_bBroadcastModified
; // will be set if notification is required
121 bool m_bCommited
; // sending the streams is coordinated by the root storage of the package
123 bool m_bIsRoot
; // marks this storage as root storages that manages all commits and reverts
126 /// Count of registered modification listeners
127 oslInterlockedCount m_nModifiedListenerCount
;
128 bool HasModifiedListener() const
130 return m_nModifiedListenerCount
> 0 && m_pAntiImpl
!= nullptr;
133 std::unordered_map
<OUString
, std::vector
<SotElement_Impl
*>> m_aChildrenMap
;
134 std::vector
< SotElement_Impl
* > m_aDeletedVector
;
136 css::uno::Reference
< css::container::XNameContainer
> m_xPackageFolder
;
138 css::uno::Reference
< css::lang::XSingleServiceFactory
> m_xPackage
;
139 css::uno::Reference
< css::uno::XComponentContext
> m_xContext
;
141 // valid only for root storage
142 css::uno::Reference
< css::io::XInputStream
> m_xInputStream
; // ??? may be stored in properties
143 css::uno::Reference
< css::io::XStream
> m_xStream
; // ??? may be stored in properties
144 css::uno::Sequence
< css::beans::PropertyValue
> m_xProperties
;
145 bool m_bHasCommonEncryptionData
;
146 ::comphelper::SequenceAsHashMap m_aCommonEncryptionData
;
148 // must be empty in case of root storage
149 OStorage_Impl
* m_pParent
;
151 bool m_bControlMediaType
;
152 OUString m_aMediaType
;
153 bool m_bMTFallbackUsed
;
155 bool m_bControlVersion
;
158 rtl::Reference
<SwitchablePersistenceStream
> m_pSwitchStream
;
160 sal_Int32 m_nStorageType
; // the mode in which the storage is used
162 // the _rels substorage that is handled in a special way in embed::StorageFormats::OFOPXML
163 SotElement_Impl
* m_pRelStorElement
;
164 css::uno::Reference
< css::embed::XStorage
> m_xRelStorage
;
165 css::uno::Sequence
< css::uno::Sequence
< css::beans::StringPair
> > m_aRelInfo
;
166 css::uno::Reference
< css::io::XInputStream
> m_xNewRelInfoStream
;
167 sal_Int16 m_nRelInfoStatus
;
170 OStorage_Impl( css::uno::Reference
< css::io::XInputStream
> const & xInputStream
,
172 const css::uno::Sequence
< css::beans::PropertyValue
>& xProperties
,
173 css::uno::Reference
< css::uno::XComponentContext
> const & xContext
,
174 sal_Int32 nStorageType
);
176 OStorage_Impl( css::uno::Reference
< css::io::XStream
> const & xStream
,
178 const css::uno::Sequence
< css::beans::PropertyValue
>& xProperties
,
179 css::uno::Reference
< css::uno::XComponentContext
> const & xContext
,
180 sal_Int32 nStorageType
);
182 // constructor for a substorage
183 OStorage_Impl( OStorage_Impl
* pParent
,
185 css::uno::Reference
< css::container::XNameContainer
> const & xPackageFolder
,
186 css::uno::Reference
< css::lang::XSingleServiceFactory
> xPackage
,
187 css::uno::Reference
< css::uno::XComponentContext
> const & xContext
,
188 sal_Int32 nStorageType
);
192 void SetReadOnlyWrap( OStorage
& aStorage
);
193 void RemoveReadOnlyWrap( const OStorage
& aStorage
);
195 void OpenOwnPackage();
197 void ReadRelInfoIfNecessary();
200 void GetStorageProperties();
202 css::uno::Sequence
< css::uno::Sequence
< css::beans::StringPair
> > GetAllRelationshipsIfAny();
203 void CopyLastCommitTo( const css::uno::Reference
< css::embed::XStorage
>& xNewStor
);
205 void InsertIntoPackageFolder(
206 const OUString
& aName
,
207 const css::uno::Reference
< css::container::XNameContainer
>& xParentPackageFolder
);
212 /// @throws css::packages::NoEncryptionException
213 ::comphelper::SequenceAsHashMap
GetCommonRootEncryptionData();
215 void CopyToStorage( const css::uno::Reference
< css::embed::XStorage
>& xDest
,
217 void CopyStorageElement( SotElement_Impl
* pElement
,
218 const css::uno::Reference
< css::embed::XStorage
>& xDest
,
219 const OUString
& aName
,
222 SotElement_Impl
* FindElement( const OUString
& rName
);
224 SotElement_Impl
* InsertStream( const OUString
& aName
, bool bEncr
);
225 void InsertRawStream( const OUString
& aName
, const css::uno::Reference
< css::io::XInputStream
>& xInStream
);
227 std::unique_ptr
<OStorage_Impl
> CreateNewStorageImpl( sal_Int32 nStorageMode
);
228 SotElement_Impl
* InsertStorage( const OUString
& aName
, sal_Int32 nStorageMode
);
229 SotElement_Impl
* InsertElement( const OUString
& aName
, bool bIsStorage
);
231 void OpenSubStorage( SotElement_Impl
* pElement
, sal_Int32 nStorageMode
);
232 void OpenSubStream( SotElement_Impl
* pElement
);
234 css::uno::Sequence
< OUString
> GetElementNames();
236 void RemoveElement( OUString
const & rName
, SotElement_Impl
* pElement
);
237 static void ClearElement( SotElement_Impl
* pElement
);
239 /// @throws css::embed::InvalidStorageException
240 /// @throws css::lang::IllegalArgumentException
241 /// @throws css::packages::WrongPasswordException
242 /// @throws css::packages::NoEncryptionException
243 /// @throws css::container::NoSuchElementException
244 /// @throws css::io::IOException
245 /// @throws css::embed::StorageWrappedTargetException
246 /// @throws css::uno::RuntimeException
247 void CloneStreamElement(
248 const OUString
& aStreamName
,
250 const ::comphelper::SequenceAsHashMap
& aEncryptionData
,
251 css::uno::Reference
< css::io::XStream
>& xTargetStream
);
253 void RemoveStreamRelInfo( std::u16string_view aOriginalName
);
254 void CreateRelStorage();
255 void CommitStreamRelInfo( std::u16string_view rName
, SotElement_Impl
const * pStreamElement
);
256 css::uno::Reference
< css::io::XInputStream
> GetRelInfoStreamForName(
257 std::u16string_view aName
);
258 void CommitRelInfo( const css::uno::Reference
< css::container::XNameContainer
>& xNewPackageFolder
);
260 static void completeStorageStreamCopy_Impl(
261 const css::uno::Reference
< css::io::XStream
>& xSource
,
262 const css::uno::Reference
< css::io::XStream
>& xDest
,
263 sal_Int32 nStorageType
,
264 const css::uno::Sequence
< css::uno::Sequence
< css::beans::StringPair
> >& aRelInfo
);
268 class OStorage final
: public css::lang::XTypeProvider
269 , public css::embed::XStorage2
270 , public css::embed::XStorageRawAccess
271 , public css::embed::XTransactedObject
272 , public css::embed::XTransactionBroadcaster
273 , public css::util::XModifiable
274 , public css::embed::XEncryptionProtectedStorage
275 , public css::beans::XPropertySet
276 , public css::embed::XOptimizedStorage
277 , public css::embed::XRelationshipAccess
278 , public css::embed::XHierarchicalStorageAccess2
279 , public ::cppu::OWeakObject
281 OStorage_Impl
* m_pImpl
;
282 rtl::Reference
<comphelper::RefCountedMutex
> m_xSharedMutex
;
283 comphelper::OMultiTypeInterfaceContainerHelper2 m_aListenersContainer
; // list of listeners
284 ::std::optional
< ::cppu::OTypeCollection
> m_oTypeCollection
;
285 bool m_bReadOnlyWrap
;
286 ::rtl::Reference
<OChildDispListener_Impl
> m_pSubElDispListener
;
287 ::std::vector
< css::uno::WeakReference
< css::lang::XComponent
> > m_aOpenSubComponentsVector
;
288 ::rtl::Reference
< OHierarchyHolder_Impl
> m_rHierarchyHolder
;
290 SotElement_Impl
* OpenStreamElement_Impl( const OUString
& aStreamName
, sal_Int32 nOpenMode
, bool bEncr
);
292 void BroadcastModifiedIfNecessary();
294 void BroadcastTransaction( sal_Int8 nMessage
);
296 void MakeLinkToSubComponent_Impl(
297 const css::uno::Reference
< css::lang::XComponent
>& xComponent
);
301 OStorage( css::uno::Reference
< css::io::XInputStream
> const & xInputStream
,
303 const css::uno::Sequence
< css::beans::PropertyValue
>& xProperties
,
304 css::uno::Reference
< css::uno::XComponentContext
> const & xContext
,
305 sal_Int32 nStorageType
);
307 OStorage( css::uno::Reference
< css::io::XStream
> const & xStream
,
309 const css::uno::Sequence
< css::beans::PropertyValue
>& xProperties
,
310 css::uno::Reference
< css::uno::XComponentContext
> const & xContext
,
311 sal_Int32 nStorageType
);
313 OStorage( OStorage_Impl
* pImpl
, bool bReadOnlyWrap
);
315 virtual ~OStorage() override
;
317 void InternalDispose( bool bNotifyImpl
);
319 void ChildIsDisposed( const css::uno::Reference
< css::uno::XInterface
>& xChild
);
321 sal_Int32
GetRefCount_Impl() const { return m_refCount
; }
325 virtual css::uno::Any SAL_CALL
queryInterface( const css::uno::Type
& rType
) override
;
327 virtual void SAL_CALL
acquire() noexcept override
;
329 virtual void SAL_CALL
release() noexcept override
;
333 virtual css::uno::Sequence
< css::uno::Type
> SAL_CALL
getTypes() override
;
335 virtual css::uno::Sequence
< sal_Int8
> SAL_CALL
getImplementationId() override
;
339 virtual void SAL_CALL
copyToStorage( const css::uno::Reference
< css::embed::XStorage
>& xDest
) override
;
341 virtual css::uno::Reference
< css::io::XStream
> SAL_CALL
openStreamElement(
342 const OUString
& aStreamName
, sal_Int32 nOpenMode
) override
;
344 virtual css::uno::Reference
< css::io::XStream
> SAL_CALL
openEncryptedStreamElement(
345 const OUString
& aStreamName
, sal_Int32 nOpenMode
, const OUString
& aPass
) override
;
347 virtual css::uno::Reference
< css::embed::XStorage
> SAL_CALL
openStorageElement(
348 const OUString
& aStorName
, sal_Int32 nStorageMode
) override
;
350 virtual css::uno::Reference
< css::io::XStream
> SAL_CALL
cloneStreamElement(
351 const OUString
& aStreamName
) override
;
353 virtual css::uno::Reference
< css::io::XStream
> SAL_CALL
cloneEncryptedStreamElement(
354 const OUString
& aStreamName
, const OUString
& aPass
) override
;
356 virtual void SAL_CALL
copyLastCommitTo(
357 const css::uno::Reference
< css::embed::XStorage
>& xTargetStorage
) override
;
359 virtual void SAL_CALL
copyStorageElementLastCommitTo(
360 const OUString
& aStorName
,
361 const css::uno::Reference
< css::embed::XStorage
>& xTargetStorage
) override
;
363 virtual sal_Bool SAL_CALL
isStreamElement( const OUString
& aElementName
) override
;
365 virtual sal_Bool SAL_CALL
isStorageElement( const OUString
& aElementName
) override
;
367 virtual void SAL_CALL
removeElement( const OUString
& aElementName
) override
;
369 virtual void SAL_CALL
renameElement( const OUString
& rEleName
, const OUString
& rNewName
) override
;
371 virtual void SAL_CALL
copyElementTo( const OUString
& aElementName
,
372 const css::uno::Reference
< css::embed::XStorage
>& xDest
,
373 const OUString
& aNewName
) override
;
375 virtual void SAL_CALL
moveElementTo( const OUString
& aElementName
,
376 const css::uno::Reference
< css::embed::XStorage
>& xDest
,
377 const OUString
& rNewName
) override
;
381 virtual css::uno::Reference
< css::io::XStream
> SAL_CALL
openEncryptedStream( const OUString
& sStreamName
, ::sal_Int32 nOpenMode
, const css::uno::Sequence
< css::beans::NamedValue
>& aEncryptionData
) override
;
383 virtual css::uno::Reference
< css::io::XStream
> SAL_CALL
cloneEncryptedStream( const OUString
& sStreamName
, const css::uno::Sequence
< css::beans::NamedValue
>& aEncryptionData
) override
;
387 virtual css::uno::Reference
< css::io::XInputStream
> SAL_CALL
getPlainRawStreamElement(
388 const OUString
& sStreamName
) override
;
390 virtual css::uno::Reference
< css::io::XInputStream
> SAL_CALL
getRawEncrStreamElement(
391 const OUString
& sStreamName
) override
;
393 virtual void SAL_CALL
insertRawEncrStreamElement( const OUString
& aStreamName
,
394 const css::uno::Reference
< css::io::XInputStream
>& xInStream
) override
;
397 virtual void SAL_CALL
commit() override
;
399 virtual void SAL_CALL
revert() override
;
401 // XTransactionBroadcaster
402 virtual void SAL_CALL
addTransactionListener(
403 const css::uno::Reference
< css::embed::XTransactionListener
>& aListener
) override
;
405 virtual void SAL_CALL
removeTransactionListener(
406 const css::uno::Reference
< css::embed::XTransactionListener
>& aListener
) override
;
410 virtual sal_Bool SAL_CALL
isModified() override
;
412 virtual void SAL_CALL
setModified( sal_Bool bModified
) override
;
414 virtual void SAL_CALL
addModifyListener(
415 const css::uno::Reference
< css::util::XModifyListener
>& aListener
) override
;
417 virtual void SAL_CALL
removeModifyListener(
418 const css::uno::Reference
< css::util::XModifyListener
>& aListener
) override
;
422 virtual css::uno::Any SAL_CALL
getByName( const OUString
& aName
) override
;
424 virtual css::uno::Sequence
< OUString
> SAL_CALL
getElementNames() override
;
426 virtual sal_Bool SAL_CALL
hasByName( const OUString
& aName
) override
;
428 virtual css::uno::Type SAL_CALL
getElementType() override
;
430 virtual sal_Bool SAL_CALL
hasElements() override
;
434 virtual void SAL_CALL
dispose() override
;
436 virtual void SAL_CALL
addEventListener(
437 const css::uno::Reference
< css::lang::XEventListener
>& xListener
) override
;
439 virtual void SAL_CALL
removeEventListener(
440 const css::uno::Reference
< css::lang::XEventListener
>& xListener
) override
;
442 // XEncryptionProtectedSource
444 virtual void SAL_CALL
setEncryptionPassword( const OUString
& aPass
) override
;
446 virtual void SAL_CALL
removeEncryption() override
;
448 // XEncryptionProtectedSource2
450 virtual void SAL_CALL
setEncryptionData(
451 const css::uno::Sequence
< css::beans::NamedValue
>& aEncryptionData
) override
;
453 virtual sal_Bool SAL_CALL
hasEncryptionData() override
;
455 // XEncryptionProtectedStorage
457 virtual void SAL_CALL
setEncryptionAlgorithms( const css::uno::Sequence
< css::beans::NamedValue
>& aAlgorithms
) override
;
458 virtual void SAL_CALL
setGpgProperties( const css::uno::Sequence
< css::uno::Sequence
< css::beans::NamedValue
> >& aCryptProps
) override
;
460 virtual css::uno::Sequence
< css::beans::NamedValue
> SAL_CALL
getEncryptionAlgorithms() override
;
464 virtual css::uno::Reference
< css::beans::XPropertySetInfo
> SAL_CALL
getPropertySetInfo() override
;
466 virtual void SAL_CALL
setPropertyValue( const OUString
& aPropertyName
, const css::uno::Any
& aValue
) override
;
468 virtual css::uno::Any SAL_CALL
getPropertyValue( const OUString
& PropertyName
) override
;
470 virtual void SAL_CALL
addPropertyChangeListener(
471 const OUString
& aPropertyName
,
472 const css::uno::Reference
< css::beans::XPropertyChangeListener
>& xListener
) override
;
474 virtual void SAL_CALL
removePropertyChangeListener(
475 const OUString
& aPropertyName
,
476 const css::uno::Reference
< css::beans::XPropertyChangeListener
>& aListener
) override
;
478 virtual void SAL_CALL
addVetoableChangeListener(
479 const OUString
& PropertyName
,
480 const css::uno::Reference
< css::beans::XVetoableChangeListener
>& aListener
) override
;
482 virtual void SAL_CALL
removeVetoableChangeListener( const OUString
& PropertyName
, const css::uno::Reference
< css::beans::XVetoableChangeListener
>& aListener
) override
;
485 virtual void SAL_CALL
insertRawNonEncrStreamElementDirect( const OUString
& sStreamName
, const css::uno::Reference
< css::io::XInputStream
>& xInStream
) override
;
487 virtual void SAL_CALL
insertStreamElementDirect( const OUString
& sStreamName
, const css::uno::Reference
< css::io::XInputStream
>& xInStream
, const css::uno::Sequence
< css::beans::PropertyValue
>& aProps
) override
;
489 virtual void SAL_CALL
copyElementDirectlyTo( const OUString
& sSourceName
, const css::uno::Reference
< css::embed::XOptimizedStorage
>& xTargetStorage
, const OUString
& sTargetName
) override
;
491 virtual void SAL_CALL
writeAndAttachToStream( const css::uno::Reference
< css::io::XStream
>& xStream
) override
;
493 virtual void SAL_CALL
attachToURL( const OUString
& sURL
, sal_Bool bReadOnly
) override
;
495 virtual css::uno::Any SAL_CALL
getElementPropertyValue( const OUString
& sElementName
, const OUString
& sPropertyName
) override
;
497 virtual void SAL_CALL
copyStreamElementData( const OUString
& sStreamName
, const css::uno::Reference
< css::io::XStream
>& xTargetStream
) override
;
499 // XRelationshipAccess
500 virtual sal_Bool SAL_CALL
hasByID( const OUString
& sID
) override
;
502 virtual OUString SAL_CALL
getTargetByID( const OUString
& sID
) override
;
504 virtual OUString SAL_CALL
getTypeByID( const OUString
& sID
) override
;
506 virtual css::uno::Sequence
< css::beans::StringPair
> SAL_CALL
getRelationshipByID( const OUString
& sID
) override
;
508 virtual css::uno::Sequence
< css::uno::Sequence
< css::beans::StringPair
> > SAL_CALL
getRelationshipsByType( const OUString
& sType
) override
;
510 virtual css::uno::Sequence
< css::uno::Sequence
< css::beans::StringPair
> > SAL_CALL
getAllRelationships( ) override
;
512 virtual void SAL_CALL
insertRelationshipByID( const OUString
& sID
, const css::uno::Sequence
< css::beans::StringPair
>& aEntry
, sal_Bool bReplace
) override
;
514 virtual void SAL_CALL
removeRelationshipByID( const OUString
& sID
) override
;
516 virtual void SAL_CALL
insertRelationships( const css::uno::Sequence
< css::uno::Sequence
< css::beans::StringPair
> >& aEntries
, sal_Bool bReplace
) override
;
518 virtual void SAL_CALL
clearRelationships( ) override
;
520 // XHierarchicalStorageAccess
521 virtual css::uno::Reference
< css::embed::XExtendedStorageStream
> SAL_CALL
openStreamElementByHierarchicalName( const OUString
& sStreamPath
, ::sal_Int32 nOpenMode
) override
;
523 virtual css::uno::Reference
< css::embed::XExtendedStorageStream
> SAL_CALL
openEncryptedStreamElementByHierarchicalName( const OUString
& sStreamName
, ::sal_Int32 nOpenMode
, const OUString
& sPassword
) override
;
525 virtual void SAL_CALL
removeStreamElementByHierarchicalName( const OUString
& sElementPath
) override
;
527 // XHierarchicalStorageAccess2
528 virtual css::uno::Reference
< css::embed::XExtendedStorageStream
> SAL_CALL
openEncryptedStreamByHierarchicalName( const OUString
& sStreamName
, ::sal_Int32 nOpenMode
, const css::uno::Sequence
< css::beans::NamedValue
>& aEncryptionData
) override
;
531 StorageHolder_Impl::StorageHolder_Impl( OStorage
* pStorage
)
532 : m_pPointer( pStorage
)
533 , m_xWeakRef( css::uno::Reference
< css::embed::XStorage
>( pStorage
) )
539 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */