1*2e2212a7SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*2e2212a7SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*2e2212a7SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*2e2212a7SAndrew Rist  * distributed with this work for additional information
6*2e2212a7SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*2e2212a7SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*2e2212a7SAndrew Rist  * "License"); you may not use this file except in compliance
9*2e2212a7SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*2e2212a7SAndrew Rist  *
11*2e2212a7SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*2e2212a7SAndrew Rist  *
13*2e2212a7SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*2e2212a7SAndrew Rist  * software distributed under the License is distributed on an
15*2e2212a7SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*2e2212a7SAndrew Rist  * KIND, either express or implied.  See the License for the
17*2e2212a7SAndrew Rist  * specific language governing permissions and limitations
18*2e2212a7SAndrew Rist  * under the License.
19*2e2212a7SAndrew Rist  *
20*2e2212a7SAndrew Rist  *************************************************************/
21*2e2212a7SAndrew Rist 
22*2e2212a7SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir #ifndef _DBA_COREDATAACCESS_COMMANDCONTAINER_HXX_
25cdf0e10cSrcweir #define _DBA_COREDATAACCESS_COMMANDCONTAINER_HXX_
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #ifndef _DBA_CORE_DEFINITIONCONTAINER_HXX_
28cdf0e10cSrcweir #include "definitioncontainer.hxx"
29cdf0e10cSrcweir #endif
30cdf0e10cSrcweir 
31cdf0e10cSrcweir #ifndef _COM_SUN_STAR_LANG_XSINGLESERVICEFACTORY_HPP_
32cdf0e10cSrcweir #include <com/sun/star/lang/XSingleServiceFactory.hpp>
33cdf0e10cSrcweir #endif
34cdf0e10cSrcweir 
35cdf0e10cSrcweir #ifndef _CPPUHELPER_IMPLBASE1_HXX_
36cdf0e10cSrcweir #include <cppuhelper/implbase1.hxx>
37cdf0e10cSrcweir #endif
38cdf0e10cSrcweir 
39cdf0e10cSrcweir //........................................................................
40cdf0e10cSrcweir namespace dbaccess
41cdf0e10cSrcweir {
42cdf0e10cSrcweir //........................................................................
43cdf0e10cSrcweir //==========================================================================
44cdf0e10cSrcweir //= OCommandContainer
45cdf0e10cSrcweir //==========================================================================
46cdf0e10cSrcweir 
47cdf0e10cSrcweir typedef ::cppu::ImplHelper1 <   ::com::sun::star::lang::XSingleServiceFactory
48cdf0e10cSrcweir                             >   OCommandContainer_BASE;
49cdf0e10cSrcweir 
50cdf0e10cSrcweir class OCommandContainer	: public ODefinitionContainer
51cdf0e10cSrcweir 						 ,public OCommandContainer_BASE
52cdf0e10cSrcweir {
53cdf0e10cSrcweir 	sal_Bool m_bTables;
54cdf0e10cSrcweir 
55cdf0e10cSrcweir public:
56cdf0e10cSrcweir 	/** constructs the container.<BR>
57cdf0e10cSrcweir 	*/
58cdf0e10cSrcweir 	OCommandContainer(
59cdf0e10cSrcweir 		 const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _xORB
60cdf0e10cSrcweir 		,const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >&	_xParentContainer
61cdf0e10cSrcweir 		,const TContentPtr& _pImpl
62cdf0e10cSrcweir 		,sal_Bool _bTables
63cdf0e10cSrcweir 		);
64cdf0e10cSrcweir 
65cdf0e10cSrcweir 	DECLARE_XINTERFACE( )
66cdf0e10cSrcweir 	DECLARE_TYPEPROVIDER( );
67cdf0e10cSrcweir 
68cdf0e10cSrcweir 	// XSingleServiceFactory
69cdf0e10cSrcweir     virtual ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL createInstance( ) throw (::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException);
70cdf0e10cSrcweir 	virtual ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL createInstanceWithArguments( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aArguments ) throw (::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException);
71cdf0e10cSrcweir 
72cdf0e10cSrcweir protected:
73cdf0e10cSrcweir 	virtual ~OCommandContainer();
74cdf0e10cSrcweir 
75cdf0e10cSrcweir     // ODefinitionContainer
76cdf0e10cSrcweir 	virtual ::com::sun::star::uno::Reference< ::com::sun::star::ucb::XContent > createObject(const ::rtl::OUString& _rName);
77cdf0e10cSrcweir 
78cdf0e10cSrcweir protected:
79cdf0e10cSrcweir     // OContentHelper overridables
80cdf0e10cSrcweir     virtual ::rtl::OUString determineContentType() const;
81cdf0e10cSrcweir };
82cdf0e10cSrcweir 
83cdf0e10cSrcweir //........................................................................
84cdf0e10cSrcweir }	// namespace dbaccess
85cdf0e10cSrcweir //........................................................................
86cdf0e10cSrcweir 
87cdf0e10cSrcweir #endif // _DBA_COREDATAACCESS_COMMANDCONTAINER_HXX_
88cdf0e10cSrcweir 
89cdf0e10cSrcweir 
90