1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 #ifndef CONNECTIVITY_HSQLDB_TERMINATELISTENER_HXX
24 #define CONNECTIVITY_HSQLDB_TERMINATELISTENER_HXX
25 
26 #include <cppuhelper/compbase1.hxx>
27 #ifndef _COM_SUN_STAR_LANG_XSERVICEINFO_HPP_
28 #include <com/sun/star/frame/XTerminateListener.hpp>
29 #endif
30 
31 //........................................................................
32 namespace connectivity
33 {
34 //........................................................................
35 
36 	namespace hsqldb
37 	{
38         class ODriverDelegator;
39         class OConnectionController : public ::cppu::WeakImplHelper1<
40 											        ::com::sun::star::frame::XTerminateListener >
41         {
42             ODriverDelegator* m_pDriver;
43             protected:
~OConnectionController()44                 virtual ~OConnectionController() {m_pDriver = NULL;}
45 	        public:
OConnectionController(ODriverDelegator * _pDriver)46                 OConnectionController(ODriverDelegator* _pDriver) : m_pDriver(_pDriver){}
47 
48 		        // XEventListener
49 		        virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source )
50 			        throw( ::com::sun::star::uno::RuntimeException );
51 
52 		        // XTerminateListener
53 		        virtual void SAL_CALL queryTermination( const ::com::sun::star::lang::EventObject& aEvent )
54 			        throw( ::com::sun::star::frame::TerminationVetoException, ::com::sun::star::uno::RuntimeException );
55 		        virtual void SAL_CALL notifyTermination( const ::com::sun::star::lang::EventObject& aEvent )
56 			        throw( ::com::sun::star::uno::RuntimeException );
57         };
58     }
59 //........................................................................
60 }	// namespace connectivity
61 //........................................................................
62 #endif // CONNECTIVITY_HSQLDB_TERMINATELISTENER_HXX
63