97 lines
3.1 KiB
C++
97 lines
3.1 KiB
C++
/*************************************************************************
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: SvXMLAutoCorrectExport.hxx,v $
|
|
*
|
|
* $Revision: 1.7 $
|
|
*
|
|
* last change: $Author: rt $ $Date: 2005-09-08 22:24:31 $
|
|
*
|
|
* The Contents of this file are made available subject to
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
|
*
|
|
*
|
|
* GNU Lesser General Public License Version 2.1
|
|
* =============================================
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
* MA 02111-1307 USA
|
|
*
|
|
************************************************************************/
|
|
#ifndef _SV_XMLAUTOCORRECTEXPORT_HXX
|
|
#define _SV_XMLAUTOCORRECTEXPORT_HXX
|
|
|
|
#ifndef _XMLOFF_XMLICTXT_HXX
|
|
#include <xmloff/xmlictxt.hxx>
|
|
#endif
|
|
|
|
#ifndef _XMLOFF_XMLEXP_HXX
|
|
#include <xmloff/xmlexp.hxx>
|
|
#endif
|
|
|
|
#ifndef _XMLOFF_NMSPMAP_HXX
|
|
#include <xmloff/nmspmap.hxx>
|
|
#endif
|
|
|
|
#ifndef _XMLOFF_XMLNMSPE_HXX
|
|
#include <xmloff/xmlnmspe.hxx>
|
|
#endif
|
|
#ifndef _MySVXACORR_HXX
|
|
#include "svxacorr.hxx"
|
|
#endif
|
|
|
|
class SvXMLAutoCorrectExport : public SvXMLExport
|
|
{
|
|
private:
|
|
const SvxAutocorrWordList *pAutocorr_List;
|
|
public:
|
|
// #110680#
|
|
SvXMLAutoCorrectExport(
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > xServiceFactory,
|
|
const SvxAutocorrWordList * pNewAutocorr_List,
|
|
const rtl::OUString &rFileName,
|
|
com::sun::star::uno::Reference< com::sun::star::xml::sax::XDocumentHandler> &rHandler);
|
|
|
|
virtual ~SvXMLAutoCorrectExport ( void ) {}
|
|
sal_uInt32 exportDoc(enum ::xmloff::token::XMLTokenEnum eClass);
|
|
void _ExportAutoStyles() {}
|
|
void _ExportMasterStyles () {}
|
|
void _ExportContent() {}
|
|
};
|
|
|
|
class SvStringsISortDtor;
|
|
|
|
class SvXMLExceptionListExport : public SvXMLExport
|
|
{
|
|
private:
|
|
const SvStringsISortDtor & rList;
|
|
public:
|
|
// #110680#
|
|
SvXMLExceptionListExport(
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > xServiceFactory,
|
|
const SvStringsISortDtor &rNewList,
|
|
const rtl::OUString &rFileName,
|
|
com::sun::star::uno::Reference< com::sun::star::xml::sax::XDocumentHandler> &rHandler);
|
|
|
|
virtual ~SvXMLExceptionListExport ( void ) {}
|
|
sal_uInt32 exportDoc(enum ::xmloff::token::XMLTokenEnum eClass);
|
|
void _ExportAutoStyles() {}
|
|
void _ExportMasterStyles () {}
|
|
void _ExportContent() {}
|
|
};
|
|
#endif
|