Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_EMBED_XHIERARCHICALSTORAGEACCESS_HDL
2 : #define INCLUDED_COM_SUN_STAR_EMBED_XHIERARCHICALSTORAGEACCESS_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/container/NoSuchElementException.hdl"
7 : #include "com/sun/star/embed/InvalidStorageException.hdl"
8 : #include "com/sun/star/embed/StorageWrappedTargetException.hdl"
9 : namespace com { namespace sun { namespace star { namespace embed { class XExtendedStorageStream; } } } }
10 : #include "com/sun/star/io/IOException.hdl"
11 : #include "com/sun/star/lang/IllegalArgumentException.hdl"
12 : #include "com/sun/star/packages/NoEncryptionException.hdl"
13 : #include "com/sun/star/packages/WrongPasswordException.hdl"
14 : #include "com/sun/star/uno/RuntimeException.hdl"
15 : #include "com/sun/star/uno/XInterface.hdl"
16 : #include "com/sun/star/uno/Reference.h"
17 : #include "cppu/macros.hxx"
18 : #include "rtl/ustring.hxx"
19 : #include "sal/types.h"
20 :
21 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
22 :
23 : namespace com { namespace sun { namespace star { namespace embed {
24 :
25 11964 : class SAL_NO_VTABLE XHierarchicalStorageAccess : public css::uno::XInterface
26 : {
27 : public:
28 :
29 : // Methods
30 : virtual ::com::sun::star::uno::Reference< css::embed::XExtendedStorageStream > SAL_CALL openStreamElementByHierarchicalName( const ::rtl::OUString& sStreamPath, ::sal_Int32 nOpenMode ) /* throw (css::embed::InvalidStorageException, css::lang::IllegalArgumentException, css::packages::WrongPasswordException, css::io::IOException, css::embed::StorageWrappedTargetException, ::com::sun::star::uno::RuntimeException) */ = 0;
31 : virtual ::com::sun::star::uno::Reference< css::embed::XExtendedStorageStream > SAL_CALL openEncryptedStreamElementByHierarchicalName( const ::rtl::OUString& sStreamName, ::sal_Int32 nOpenMode, const ::rtl::OUString& sPassword ) /* throw (css::embed::InvalidStorageException, css::lang::IllegalArgumentException, css::packages::NoEncryptionException, css::packages::WrongPasswordException, css::io::IOException, css::embed::StorageWrappedTargetException, ::com::sun::star::uno::RuntimeException) */ = 0;
32 : virtual void SAL_CALL removeStreamElementByHierarchicalName( const ::rtl::OUString& sElementPath ) /* throw (css::embed::InvalidStorageException, css::lang::IllegalArgumentException, css::container::NoSuchElementException, css::io::IOException, css::embed::StorageWrappedTargetException, ::com::sun::star::uno::RuntimeException) */ = 0;
33 :
34 : static inline ::com::sun::star::uno::Type const & SAL_CALL static_type(void * = 0);
35 :
36 : protected:
37 11472 : ~XHierarchicalStorageAccess() throw () {} // avoid warnings about virtual members and non-virtual dtor
38 : };
39 :
40 :
41 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::embed::XHierarchicalStorageAccess const *);
42 : } } } }
43 :
44 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const ::com::sun::star::uno::Reference< css::embed::XHierarchicalStorageAccess > *) SAL_THROW(());
45 :
46 : #endif
|