Bump for 3.6-28
[LibreOffice.git] / editeng / source / misc / SvXMLAutoCorrectExport.hxx
blob937ef9543f291ebf81b08b4b31762567fd008720
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
28 #ifndef _SV_XMLAUTOCORRECTEXPORT_HXX
29 #define _SV_XMLAUTOCORRECTEXPORT_HXX
31 #include <xmloff/xmlictxt.hxx>
32 #include <xmloff/xmlexp.hxx>
33 #include <xmloff/nmspmap.hxx>
34 #include <xmloff/xmlnmspe.hxx>
35 #include <editeng/svxacorr.hxx>
37 class SvXMLAutoCorrectExport : public SvXMLExport
39 private:
40 const SvxAutocorrWordList *pAutocorr_List;
41 public:
42 SvXMLAutoCorrectExport(
43 const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > xServiceFactory,
44 const SvxAutocorrWordList * pNewAutocorr_List,
45 const rtl::OUString &rFileName,
46 com::sun::star::uno::Reference< com::sun::star::xml::sax::XDocumentHandler> &rHandler);
48 virtual ~SvXMLAutoCorrectExport ( void ) {}
49 sal_uInt32 exportDoc(enum ::xmloff::token::XMLTokenEnum eClass);
50 void _ExportAutoStyles() {}
51 void _ExportMasterStyles () {}
52 void _ExportContent() {}
55 class SvStringsISortDtor;
57 class SvXMLExceptionListExport : public SvXMLExport
59 private:
60 const SvStringsISortDtor & rList;
61 public:
62 SvXMLExceptionListExport(
63 const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > xServiceFactory,
64 const SvStringsISortDtor &rNewList,
65 const rtl::OUString &rFileName,
66 com::sun::star::uno::Reference< com::sun::star::xml::sax::XDocumentHandler> &rHandler);
68 virtual ~SvXMLExceptionListExport ( void ) {}
69 sal_uInt32 exportDoc(enum ::xmloff::token::XMLTokenEnum eClass);
70 void _ExportAutoStyles() {}
71 void _ExportMasterStyles () {}
72 void _ExportContent() {}
74 #endif
76 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */