Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_SDBC_SQLWARNING_HPP
2 : #define INCLUDED_COM_SUN_STAR_SDBC_SQLWARNING_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/sdbc/SQLWarning.hdl"
7 :
8 : #include "com/sun/star/sdbc/SQLException.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 sdbc {
15 :
16 102 : inline SQLWarning::SQLWarning() SAL_THROW(())
17 102 : : css::sdbc::SQLException()
18 102 : { }
19 :
20 0 : inline SQLWarning::SQLWarning(const ::rtl::OUString& Message_, const ::com::sun::star::uno::Reference< css::uno::XInterface >& Context_, const ::rtl::OUString& SQLState_, const ::sal_Int32& ErrorCode_, const ::com::sun::star::uno::Any& NextException_) SAL_THROW(())
21 0 : : css::sdbc::SQLException(Message_, Context_, SQLState_, ErrorCode_, NextException_)
22 0 : { }
23 :
24 : SQLWarning::SQLWarning(SQLWarning const & the_other): css::sdbc::SQLException(the_other) {}
25 :
26 98 : SQLWarning::~SQLWarning() {}
27 :
28 0 : SQLWarning & SQLWarning::operator =(SQLWarning const & the_other) {
29 : //TODO: Just like its implicitly-defined counterpart, this function definition is not exception-safe
30 0 : css::sdbc::SQLException::operator =(the_other);
31 0 : return *this;
32 : }
33 :
34 : } } } }
35 :
36 : namespace com { namespace sun { namespace star { namespace sdbc {
37 :
38 3 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::sdbc::SQLWarning const *) {
39 : static typelib_TypeDescriptionReference * the_type = 0;
40 3 : if ( !the_type )
41 : {
42 1 : typelib_static_type_init( &the_type, typelib_TypeClass_EXCEPTION, "com.sun.star.sdbc.SQLWarning" );
43 : }
44 3 : return * reinterpret_cast< ::com::sun::star::uno::Type * >( &the_type );
45 : }
46 :
47 : } } } }
48 :
49 3 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(SAL_UNUSED_PARAMETER css::sdbc::SQLWarning const *) SAL_THROW(()) {
50 3 : return ::cppu::UnoType< css::sdbc::SQLWarning >::get();
51 : }
52 :
53 : #endif // INCLUDED_COM_SUN_STAR_SDBC_SQLWARNING_HPP
|