cid#1640468 Dereference after null check
[LibreOffice.git] / package / source / xstor / xstorage.hxx
blobf6e9890c43a36899495f5b88ccf264a67a1e1478
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 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"
54 #include <vector>
55 #include <memory>
56 #include <optional>
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
78 struct OStorage_Impl;
79 struct OWriteStream_Impl;
81 struct SotElement_Impl
83 OUString m_aOriginalName;
84 bool m_bIsRemoved;
85 bool m_bIsInserted;
86 bool m_bIsStorage;
88 std::unique_ptr<OStorage_Impl> m_xStorage;
89 std::unique_ptr<OWriteStream_Impl, o3tl::default_delete<OWriteStream_Impl>> m_xStream;
91 public:
92 SotElement_Impl(OUString aName, bool bStor, bool bNew);
95 // Main storage implementation
97 class OStorage;
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;
108 struct OStorage_Impl
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
124 bool m_bListCreated;
125 bool m_bRepairPackage = false;
127 /// Count of registered modification listeners
128 oslInterlockedCount m_nModifiedListenerCount;
129 bool HasModifiedListener() const
131 return m_nModifiedListenerCount > 0 && m_pAntiImpl != nullptr;
134 std::unordered_map<OUString, std::vector<SotElement_Impl*>> m_aChildrenMap;
135 std::vector< SotElement_Impl* > m_aDeletedVector;
137 css::uno::Reference< css::container::XNameContainer > m_xPackageFolder;
139 css::uno::Reference< css::lang::XSingleServiceFactory > m_xPackage;
140 css::uno::Reference< css::uno::XComponentContext > m_xContext;
142 // valid only for root storage
143 css::uno::Reference< css::io::XInputStream > m_xInputStream; // ??? may be stored in properties
144 rtl::Reference< SwitchablePersistenceStream > m_xStream; // ??? may be stored in properties
145 css::uno::Sequence< css::beans::PropertyValue > m_xProperties;
146 bool m_bHasCommonEncryptionData;
147 ::comphelper::SequenceAsHashMap m_aCommonEncryptionData;
149 // must be empty in case of root storage
150 OStorage_Impl* m_pParent;
152 bool m_bControlMediaType;
153 OUString m_aMediaType;
154 bool m_bMTFallbackUsed;
156 bool m_bControlVersion;
157 OUString m_aVersion;
159 rtl::Reference<SwitchablePersistenceStream> m_pSwitchStream;
161 sal_Int32 m_nStorageType; // the mode in which the storage is used
163 // the _rels substorage that is handled in a special way in embed::StorageFormats::OFOPXML
164 SotElement_Impl* m_pRelStorElement;
165 rtl::Reference< OStorage > m_xRelStorage;
166 css::uno::Sequence< css::uno::Sequence< css::beans::StringPair > > m_aRelInfo;
167 css::uno::Reference< css::io::XInputStream > m_xNewRelInfoStream;
168 sal_Int16 m_nRelInfoStatus;
170 // Constructors
171 OStorage_Impl( css::uno::Reference< css::io::XInputStream > const & xInputStream,
172 sal_Int32 nMode,
173 const css::uno::Sequence< css::beans::PropertyValue >& xProperties,
174 css::uno::Reference< css::uno::XComponentContext > const & xContext,
175 sal_Int32 nStorageType );
177 OStorage_Impl( css::uno::Reference< css::io::XStream > const & xStream,
178 sal_Int32 nMode,
179 const css::uno::Sequence< css::beans::PropertyValue >& xProperties,
180 css::uno::Reference< css::uno::XComponentContext > const & xContext,
181 sal_Int32 nStorageType );
183 // constructor for a substorage
184 OStorage_Impl( OStorage_Impl* pParent,
185 sal_Int32 nMode,
186 css::uno::Reference< css::container::XNameContainer > const & xPackageFolder,
187 css::uno::Reference< css::lang::XSingleServiceFactory > xPackage,
188 css::uno::Reference< css::uno::XComponentContext > const & xContext,
189 sal_Int32 nStorageType );
191 ~OStorage_Impl();
193 void SetReadOnlyWrap( OStorage& aStorage );
194 void RemoveReadOnlyWrap( const OStorage& aStorage );
196 void OpenOwnPackage();
197 void ReadContents();
198 void ReadRelInfoIfNecessary();
200 bool HasChildren();
201 void GetStorageProperties();
203 css::uno::Sequence< css::uno::Sequence< css::beans::StringPair > > GetAllRelationshipsIfAny();
204 void CopyLastCommitTo( const css::uno::Reference< css::embed::XStorage >& xNewStor );
206 void InsertIntoPackageFolder(
207 const OUString& aName,
208 const css::uno::Reference< css::container::XNameContainer >& xParentPackageFolder );
210 void Commit();
211 void Revert();
213 /// @throws css::packages::NoEncryptionException
214 ::comphelper::SequenceAsHashMap GetCommonRootEncryptionData();
216 void CopyToStorage( const css::uno::Reference< css::embed::XStorage >& xDest,
217 bool bDirect );
218 void CopyStorageElement( SotElement_Impl* pElement,
219 const css::uno::Reference< css::embed::XStorage >& xDest,
220 const OUString& aName,
221 bool bDirect );
223 SotElement_Impl* FindElement( const OUString& rName );
225 SotElement_Impl* InsertStream( const OUString& aName, bool bEncr );
226 void InsertRawStream( const OUString& aName, const css::uno::Reference< css::io::XInputStream >& xInStream );
228 std::unique_ptr<OStorage_Impl> CreateNewStorageImpl( sal_Int32 nStorageMode );
229 SotElement_Impl* InsertStorage( const OUString& aName, sal_Int32 nStorageMode );
230 SotElement_Impl* InsertElement( const OUString& aName, bool bIsStorage );
232 void OpenSubStorage( SotElement_Impl* pElement, sal_Int32 nStorageMode );
233 void OpenSubStream( SotElement_Impl* pElement );
235 css::uno::Sequence< OUString > GetElementNames();
237 void RemoveElement( OUString const & rName, SotElement_Impl* pElement );
238 static void ClearElement( SotElement_Impl* pElement );
240 /// @throws css::embed::InvalidStorageException
241 /// @throws css::lang::IllegalArgumentException
242 /// @throws css::packages::WrongPasswordException
243 /// @throws css::packages::NoEncryptionException
244 /// @throws css::container::NoSuchElementException
245 /// @throws css::io::IOException
246 /// @throws css::embed::StorageWrappedTargetException
247 /// @throws css::uno::RuntimeException
248 void CloneStreamElement(
249 const OUString& aStreamName,
250 bool bPassProvided,
251 const ::comphelper::SequenceAsHashMap& aEncryptionData,
252 css::uno::Reference< css::io::XStream >& xTargetStream );
254 void RemoveStreamRelInfo( std::u16string_view aOriginalName );
255 void CreateRelStorage();
256 void CommitStreamRelInfo( std::u16string_view rName, SotElement_Impl const * pStreamElement );
257 css::uno::Reference< css::io::XInputStream > GetRelInfoStreamForName(
258 std::u16string_view aName );
259 void CommitRelInfo( const css::uno::Reference< css::container::XNameContainer >& xNewPackageFolder );
261 static void completeStorageStreamCopy_Impl(
262 const css::uno::Reference< css::io::XStream >& xSource,
263 const css::uno::Reference< css::io::XStream >& xDest,
264 sal_Int32 nStorageType,
265 const css::uno::Sequence< css::uno::Sequence< css::beans::StringPair > >& aRelInfo );
269 class OStorage final : public css::lang::XTypeProvider
270 , public css::embed::XStorage2
271 , public css::embed::XStorageRawAccess
272 , public css::embed::XTransactedObject
273 , public css::embed::XTransactionBroadcaster
274 , public css::util::XModifiable
275 , public css::embed::XEncryptionProtectedStorage
276 , public css::beans::XPropertySet
277 , public css::embed::XOptimizedStorage
278 , public css::embed::XRelationshipAccess
279 , public css::embed::XHierarchicalStorageAccess2
280 , public ::cppu::OWeakObject
282 OStorage_Impl* m_pImpl;
283 rtl::Reference<comphelper::RefCountedMutex> m_xSharedMutex;
284 comphelper::OMultiTypeInterfaceContainerHelper2 m_aListenersContainer; // list of listeners
285 ::std::optional< ::cppu::OTypeCollection> m_oTypeCollection;
286 bool m_bReadOnlyWrap;
287 ::rtl::Reference<OChildDispListener_Impl> m_pSubElDispListener;
288 ::std::vector< css::uno::WeakReference< css::lang::XComponent > > m_aOpenSubComponentsVector;
289 std::unique_ptr<OHierarchyHolder_Impl> m_pHierarchyHolder;
291 SotElement_Impl* OpenStreamElement_Impl( const OUString& aStreamName, sal_Int32 nOpenMode, bool bEncr );
293 void BroadcastModifiedIfNecessary();
295 void BroadcastTransaction( sal_Int8 nMessage );
297 void MakeLinkToSubComponent_Impl(
298 const css::uno::Reference< css::lang::XComponent >& xComponent );
300 public:
302 OStorage( css::uno::Reference< css::io::XInputStream > const & xInputStream,
303 sal_Int32 nMode,
304 const css::uno::Sequence< css::beans::PropertyValue >& xProperties,
305 css::uno::Reference< css::uno::XComponentContext > const & xContext,
306 sal_Int32 nStorageType );
308 OStorage( css::uno::Reference< css::io::XStream > const & xStream,
309 sal_Int32 nMode,
310 const css::uno::Sequence< css::beans::PropertyValue >& xProperties,
311 css::uno::Reference< css::uno::XComponentContext > const & xContext,
312 sal_Int32 nStorageType );
314 OStorage( OStorage_Impl* pImpl, bool bReadOnlyWrap );
316 virtual ~OStorage() override;
318 void InternalDispose( bool bNotifyImpl );
320 void ChildIsDisposed( const css::uno::Reference< css::uno::XInterface >& xChild );
322 sal_Int32 GetRefCount_Impl() const { return m_refCount; }
324 // XInterface
326 virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type& rType ) override;
328 virtual void SAL_CALL acquire() noexcept override;
330 virtual void SAL_CALL release() noexcept override;
332 // XTypeProvider
334 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() override;
336 virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() override;
338 // XStorage
340 virtual void SAL_CALL copyToStorage( const css::uno::Reference< css::embed::XStorage >& xDest ) override;
342 virtual css::uno::Reference< css::io::XStream > SAL_CALL openStreamElement(
343 const OUString& aStreamName, sal_Int32 nOpenMode ) override;
345 virtual css::uno::Reference< css::io::XStream > SAL_CALL openEncryptedStreamElement(
346 const OUString& aStreamName, sal_Int32 nOpenMode, const OUString& aPass ) override;
348 virtual css::uno::Reference< css::embed::XStorage > SAL_CALL openStorageElement(
349 const OUString& aStorName, sal_Int32 nStorageMode ) override final;
351 rtl::Reference< OStorage > openStorageElement2(
352 const OUString& aStorName, sal_Int32 nStorageMode );
354 virtual css::uno::Reference< css::io::XStream > SAL_CALL cloneStreamElement(
355 const OUString& aStreamName ) override;
357 virtual css::uno::Reference< css::io::XStream > SAL_CALL cloneEncryptedStreamElement(
358 const OUString& aStreamName, const OUString& aPass ) override;
360 virtual void SAL_CALL copyLastCommitTo(
361 const css::uno::Reference< css::embed::XStorage >& xTargetStorage ) override;
363 virtual void SAL_CALL copyStorageElementLastCommitTo(
364 const OUString& aStorName,
365 const css::uno::Reference< css::embed::XStorage >& xTargetStorage ) override;
367 virtual sal_Bool SAL_CALL isStreamElement( const OUString& aElementName ) override;
369 virtual sal_Bool SAL_CALL isStorageElement( const OUString& aElementName ) override;
371 virtual void SAL_CALL removeElement( const OUString& aElementName ) override;
373 virtual void SAL_CALL renameElement( const OUString& rEleName, const OUString& rNewName ) override;
375 virtual void SAL_CALL copyElementTo( const OUString& aElementName,
376 const css::uno::Reference< css::embed::XStorage >& xDest,
377 const OUString& aNewName ) override;
379 virtual void SAL_CALL moveElementTo( const OUString& aElementName,
380 const css::uno::Reference< css::embed::XStorage >& xDest,
381 const OUString& rNewName ) override;
383 // XStorage2
385 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;
387 virtual css::uno::Reference< css::io::XStream > SAL_CALL cloneEncryptedStream( const OUString& sStreamName, const css::uno::Sequence< css::beans::NamedValue >& aEncryptionData ) override;
389 // XStorageRawAccess
391 virtual css::uno::Reference< css::io::XInputStream > SAL_CALL getPlainRawStreamElement(
392 const OUString& sStreamName ) override;
394 virtual css::uno::Reference< css::io::XInputStream > SAL_CALL getRawEncrStreamElement(
395 const OUString& sStreamName ) override;
397 virtual void SAL_CALL insertRawEncrStreamElement( const OUString& aStreamName,
398 const css::uno::Reference< css::io::XInputStream >& xInStream ) override;
400 // XTransactedObject
401 virtual void SAL_CALL commit() override;
403 virtual void SAL_CALL revert() override;
405 // XTransactionBroadcaster
406 virtual void SAL_CALL addTransactionListener(
407 const css::uno::Reference< css::embed::XTransactionListener >& aListener ) override;
409 virtual void SAL_CALL removeTransactionListener(
410 const css::uno::Reference< css::embed::XTransactionListener >& aListener ) override;
412 // XModifiable
414 virtual sal_Bool SAL_CALL isModified() override;
416 virtual void SAL_CALL setModified( sal_Bool bModified ) override;
418 virtual void SAL_CALL addModifyListener(
419 const css::uno::Reference< css::util::XModifyListener >& aListener ) override;
421 virtual void SAL_CALL removeModifyListener(
422 const css::uno::Reference< css::util::XModifyListener >& aListener ) override;
424 // XNameAccess
426 virtual css::uno::Any SAL_CALL getByName( const OUString& aName ) override;
428 virtual css::uno::Sequence< OUString > SAL_CALL getElementNames() override;
430 virtual sal_Bool SAL_CALL hasByName( const OUString& aName ) override;
432 virtual css::uno::Type SAL_CALL getElementType() override;
434 virtual sal_Bool SAL_CALL hasElements() override;
436 // XComponent
438 virtual void SAL_CALL dispose() override;
440 virtual void SAL_CALL addEventListener(
441 const css::uno::Reference< css::lang::XEventListener >& xListener ) override;
443 virtual void SAL_CALL removeEventListener(
444 const css::uno::Reference< css::lang::XEventListener >& xListener ) override;
446 // XEncryptionProtectedSource
448 virtual void SAL_CALL setEncryptionPassword( const OUString& aPass ) override;
450 virtual void SAL_CALL removeEncryption() override;
452 // XEncryptionProtectedSource2
454 virtual void SAL_CALL setEncryptionData(
455 const css::uno::Sequence< css::beans::NamedValue >& aEncryptionData ) override;
457 virtual sal_Bool SAL_CALL hasEncryptionData() override;
459 // XEncryptionProtectedStorage
461 virtual void SAL_CALL setEncryptionAlgorithms( const css::uno::Sequence< css::beans::NamedValue >& aAlgorithms ) override;
462 virtual void SAL_CALL setGpgProperties( const css::uno::Sequence< css::uno::Sequence< css::beans::NamedValue > >& aCryptProps ) override;
464 virtual css::uno::Sequence< css::beans::NamedValue > SAL_CALL getEncryptionAlgorithms() override;
466 // XPropertySet
468 virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo() override;
470 virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName, const css::uno::Any& aValue ) override;
472 virtual css::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName ) override;
474 virtual void SAL_CALL addPropertyChangeListener(
475 const OUString& aPropertyName,
476 const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener ) override;
478 virtual void SAL_CALL removePropertyChangeListener(
479 const OUString& aPropertyName,
480 const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener ) override;
482 virtual void SAL_CALL addVetoableChangeListener(
483 const OUString& PropertyName,
484 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
486 virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
488 // XOptimizedStorage
489 virtual void SAL_CALL insertRawNonEncrStreamElementDirect( const OUString& sStreamName, const css::uno::Reference< css::io::XInputStream >& xInStream ) override;
491 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;
493 virtual void SAL_CALL copyElementDirectlyTo( const OUString& sSourceName, const css::uno::Reference< css::embed::XOptimizedStorage >& xTargetStorage, const OUString& sTargetName ) override;
495 virtual void SAL_CALL writeAndAttachToStream( const css::uno::Reference< css::io::XStream >& xStream ) override;
497 virtual void SAL_CALL attachToURL( const OUString& sURL, sal_Bool bReadOnly ) override;
499 virtual css::uno::Any SAL_CALL getElementPropertyValue( const OUString& sElementName, const OUString& sPropertyName ) override;
501 virtual void SAL_CALL copyStreamElementData( const OUString& sStreamName, const css::uno::Reference< css::io::XStream >& xTargetStream ) override;
503 // XRelationshipAccess
504 virtual sal_Bool SAL_CALL hasByID( const OUString& sID ) override;
506 virtual OUString SAL_CALL getTargetByID( const OUString& sID ) override;
508 virtual OUString SAL_CALL getTypeByID( const OUString& sID ) override;
510 virtual css::uno::Sequence< css::beans::StringPair > SAL_CALL getRelationshipByID( const OUString& sID ) override;
512 virtual css::uno::Sequence< css::uno::Sequence< css::beans::StringPair > > SAL_CALL getRelationshipsByType( const OUString& sType ) override;
514 virtual css::uno::Sequence< css::uno::Sequence< css::beans::StringPair > > SAL_CALL getAllRelationships( ) override;
516 virtual void SAL_CALL insertRelationshipByID( const OUString& sID, const css::uno::Sequence< css::beans::StringPair >& aEntry, sal_Bool bReplace ) override;
518 virtual void SAL_CALL removeRelationshipByID( const OUString& sID ) override;
520 virtual void SAL_CALL insertRelationships( const css::uno::Sequence< css::uno::Sequence< css::beans::StringPair > >& aEntries, sal_Bool bReplace ) override;
522 virtual void SAL_CALL clearRelationships( ) override;
524 // XHierarchicalStorageAccess
525 virtual css::uno::Reference< css::embed::XExtendedStorageStream > SAL_CALL openStreamElementByHierarchicalName( const OUString& sStreamPath, ::sal_Int32 nOpenMode ) override;
527 virtual css::uno::Reference< css::embed::XExtendedStorageStream > SAL_CALL openEncryptedStreamElementByHierarchicalName( const OUString& sStreamName, ::sal_Int32 nOpenMode, const OUString& sPassword ) override;
529 virtual void SAL_CALL removeStreamElementByHierarchicalName( const OUString& sElementPath ) override;
531 // XHierarchicalStorageAccess2
532 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;
535 StorageHolder_Impl::StorageHolder_Impl( OStorage* pStorage )
536 : m_pPointer( pStorage )
537 , m_xWeakRef( css::uno::Reference< css::embed::XStorage >( pStorage ) )
541 #endif
543 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */