Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_PACKAGES_ZIP_ZIPIOEXCEPTION_HPP
2 : #define INCLUDED_COM_SUN_STAR_PACKAGES_ZIP_ZIPIOEXCEPTION_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/packages/zip/ZipIOException.hdl"
7 :
8 : #include "com/sun/star/io/IOException.hpp"
9 : #include "com/sun/star/uno/Type.hxx"
10 : #include "cppu/unotype.hxx"
11 : #include "osl/mutex.hxx"
12 : #include "rtl/instance.hxx"
13 :
14 : namespace com { namespace sun { namespace star { namespace packages { namespace zip {
15 :
16 0 : inline ZipIOException::ZipIOException() SAL_THROW(())
17 0 : : css::io::IOException()
18 0 : { }
19 :
20 371 : inline ZipIOException::ZipIOException(const ::rtl::OUString& Message_, const ::com::sun::star::uno::Reference< css::uno::XInterface >& Context_) SAL_THROW(())
21 371 : : css::io::IOException(Message_, Context_)
22 371 : { }
23 :
24 : ZipIOException::ZipIOException(ZipIOException const & the_other): css::io::IOException(the_other) {}
25 :
26 371 : ZipIOException::~ZipIOException() {}
27 :
28 : ZipIOException & ZipIOException::operator =(ZipIOException const & the_other) {
29 : //TODO: Just like its implicitly-defined counterpart, this function definition is not exception-safe
30 : css::io::IOException::operator =(the_other);
31 : return *this;
32 : }
33 :
34 : } } } } }
35 :
36 : namespace com { namespace sun { namespace star { namespace packages { namespace zip {
37 :
38 0 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::packages::zip::ZipIOException const *) {
39 : static typelib_TypeDescriptionReference * the_type = 0;
40 0 : if ( !the_type )
41 : {
42 0 : typelib_static_type_init( &the_type, typelib_TypeClass_EXCEPTION, "com.sun.star.packages.zip.ZipIOException" );
43 : }
44 0 : return * reinterpret_cast< ::com::sun::star::uno::Type * >( &the_type );
45 : }
46 :
47 : } } } } }
48 :
49 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(SAL_UNUSED_PARAMETER css::packages::zip::ZipIOException const *) SAL_THROW(()) {
50 : return ::cppu::UnoType< css::packages::zip::ZipIOException >::get();
51 : }
52 :
53 : #endif // INCLUDED_COM_SUN_STAR_PACKAGES_ZIP_ZIPIOEXCEPTION_HPP
|