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