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 RPT_XMLFUNCTION_HXX
24 #define RPT_XMLFUNCTION_HXX
25 
26 #include <xmloff/xmlictxt.hxx>
27 #include <com/sun/star/beans/XPropertySet.hpp>
28 #include <com/sun/star/report/XFunctionsSupplier.hpp>
29 #include <com/sun/star/report/XFunctions.hpp>
30 
31 
32 namespace rptxml
33 {
34 	class ORptFilter;
35 	class OXMLFunction : public SvXMLImportContext
36 	{
37 	protected:
38 		::com::sun::star::uno::Reference< ::com::sun::star::report::XFunctions >	m_xFunctions;
39         ::com::sun::star::uno::Reference< ::com::sun::star::report::XFunction >	    m_xFunction;
40         bool                                                                        m_bAddToReport;
41 
42 		ORptFilter& GetOwnImport();
43 
44         OXMLFunction(const OXMLFunction&);
45         void operator =(const OXMLFunction&);
46 	public:
47 
48 		OXMLFunction( ORptFilter& rImport
49 					, sal_uInt16 nPrfx
50 					,const ::rtl::OUString& rLName
51 					,const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList > & xAttrList
52                     ,const ::com::sun::star::uno::Reference< ::com::sun::star::report::XFunctionsSupplier >&	_xFunctions
53                     ,bool _bAddToReport = false
54 					);
55 		virtual ~OXMLFunction();
56 
57 		virtual void EndElement();
58 	};
59 // -----------------------------------------------------------------------------
60 } // namespace rptxml
61 // -----------------------------------------------------------------------------
62 
63 #endif // RPT_XMLFunction_HXX
64