xref: /trunk/main/xmloff/inc/xmloff/HatchStyle.hxx (revision ecfe53c5)
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 
24 #ifndef _XMLOFF_HATCHSTYLE_HXX
25 #define _XMLOFF_HATCHSTYLE_HXX
26 
27 #include "sal/config.h"
28 #include "xmloff/dllapi.h"
29 #include <sal/types.h>
30 
31 class SvXMLImport;
32 class SvXMLExport;
33 namespace com { namespace sun { namespace star {
34     namespace uno { template<class A> class Reference; }
35     namespace xml { namespace sax { class XAttributeList; } }
36     namespace uno { class Any; }
37 } } }
38 namespace rtl { class OUString; }
39 
40 
41 class XMLOFF_DLLPUBLIC XMLHatchStyleImport
42 {
43     SvXMLImport& rImport;
44 
45 public:
46 	XMLHatchStyleImport( SvXMLImport& rImport );
47 	~XMLHatchStyleImport();
48 
49 	sal_Bool importXML(
50         const ::com::sun::star::uno::Reference<
51             ::com::sun::star::xml::sax::XAttributeList>& xAttrList,
52         ::com::sun::star::uno::Any& rValue,
53         ::rtl::OUString& rStrName );
54 };
55 
56 class XMLOFF_DLLPUBLIC XMLHatchStyleExport
57 {
58     SvXMLExport& rExport;
59 
60 public:
61 	XMLHatchStyleExport( SvXMLExport& rExport );
62 	~XMLHatchStyleExport();
63 
64 	sal_Bool exportXML( const ::rtl::OUString& rStrName, const ::com::sun::star::uno::Any& rValue );
65 };
66 
67 #endif // _XMLOFF_HATCHELEMENT_HXX
68