Update ooo320-m1
[ooovba.git] / svx / source / editeng / SvXMLAutoCorrectExport.hxx
blob6620168ca3341816e7ad1e86455accaf4f55a11e
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: SvXMLAutoCorrectExport.hxx,v $
10 * $Revision: 1.9 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef _SV_XMLAUTOCORRECTEXPORT_HXX
31 #define _SV_XMLAUTOCORRECTEXPORT_HXX
33 #include <xmloff/xmlictxt.hxx>
34 #include <xmloff/xmlexp.hxx>
35 #include <xmloff/nmspmap.hxx>
36 #include <xmloff/xmlnmspe.hxx>
37 #include <svx/svxacorr.hxx>
39 class SvXMLAutoCorrectExport : public SvXMLExport
41 private:
42 const SvxAutocorrWordList *pAutocorr_List;
43 public:
44 // #110680#
45 SvXMLAutoCorrectExport(
46 const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > xServiceFactory,
47 const SvxAutocorrWordList * pNewAutocorr_List,
48 const rtl::OUString &rFileName,
49 com::sun::star::uno::Reference< com::sun::star::xml::sax::XDocumentHandler> &rHandler);
51 virtual ~SvXMLAutoCorrectExport ( void ) {}
52 sal_uInt32 exportDoc(enum ::xmloff::token::XMLTokenEnum eClass);
53 void _ExportAutoStyles() {}
54 void _ExportMasterStyles () {}
55 void _ExportContent() {}
58 class SvStringsISortDtor;
60 class SvXMLExceptionListExport : public SvXMLExport
62 private:
63 const SvStringsISortDtor & rList;
64 public:
65 // #110680#
66 SvXMLExceptionListExport(
67 const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > xServiceFactory,
68 const SvStringsISortDtor &rNewList,
69 const rtl::OUString &rFileName,
70 com::sun::star::uno::Reference< com::sun::star::xml::sax::XDocumentHandler> &rHandler);
72 virtual ~SvXMLExceptionListExport ( void ) {}
73 sal_uInt32 exportDoc(enum ::xmloff::token::XMLTokenEnum eClass);
74 void _ExportAutoStyles() {}
75 void _ExportMasterStyles () {}
76 void _ExportContent() {}
78 #endif