Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_SCRIPT_XSTORAGEBASEDLIBRARYCONTAINER_HDL
2 : #define INCLUDED_COM_SUN_STAR_SCRIPT_XSTORAGEBASEDLIBRARYCONTAINER_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : namespace com { namespace sun { namespace star { namespace embed { class XStorage; } } } }
7 : #include "com/sun/star/lang/IllegalArgumentException.hdl"
8 : #include "com/sun/star/lang/WrappedTargetException.hdl"
9 : #include "com/sun/star/script/XPersistentLibraryContainer.hdl"
10 : #include "com/sun/star/uno/RuntimeException.hdl"
11 : #include "com/sun/star/uno/Reference.h"
12 : #include "cppu/macros.hxx"
13 :
14 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
15 :
16 : namespace com { namespace sun { namespace star { namespace script {
17 :
18 1871 : class SAL_NO_VTABLE XStorageBasedLibraryContainer : public css::script::XPersistentLibraryContainer
19 : {
20 : public:
21 :
22 : // Attributes
23 : virtual ::com::sun::star::uno::Reference< css::embed::XStorage > SAL_CALL getRootStorage() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
24 : virtual void SAL_CALL setRootStorage( const ::com::sun::star::uno::Reference< css::embed::XStorage >& _rootstorage ) /* throw (css::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException) */ = 0;
25 :
26 : // Methods
27 : virtual void SAL_CALL storeLibrariesToStorage( const ::com::sun::star::uno::Reference< css::embed::XStorage >& RootStorage ) /* throw (css::lang::IllegalArgumentException, css::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException) */ = 0;
28 :
29 : static inline ::com::sun::star::uno::Type const & SAL_CALL static_type(void * = 0);
30 :
31 : protected:
32 1001 : ~XStorageBasedLibraryContainer() throw () {} // avoid warnings about virtual members and non-virtual dtor
33 : };
34 :
35 :
36 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::script::XStorageBasedLibraryContainer const *);
37 : } } } }
38 :
39 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const ::com::sun::star::uno::Reference< css::script::XStorageBasedLibraryContainer > *) SAL_THROW(());
40 :
41 : #endif
|