1cdf0e10cSrcweir#************************************************************************* 2cdf0e10cSrcweir# 3cdf0e10cSrcweir# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4cdf0e10cSrcweir# 5cdf0e10cSrcweir# Copyright 2000, 2011 Oracle and/or its affiliates. 6cdf0e10cSrcweir# 7cdf0e10cSrcweir# OpenOffice.org - a multi-platform office productivity suite 8cdf0e10cSrcweir# 9cdf0e10cSrcweir# This file is part of OpenOffice.org. 10cdf0e10cSrcweir# 11cdf0e10cSrcweir# OpenOffice.org is free software: you can redistribute it and/or modify 12cdf0e10cSrcweir# it under the terms of the GNU Lesser General Public License version 3 13cdf0e10cSrcweir# only, as published by the Free Software Foundation. 14cdf0e10cSrcweir# 15cdf0e10cSrcweir# OpenOffice.org is distributed in the hope that it will be useful, 16cdf0e10cSrcweir# but WITHOUT ANY WARRANTY; without even the implied warranty of 17cdf0e10cSrcweir# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18cdf0e10cSrcweir# GNU Lesser General Public License version 3 for more details 19cdf0e10cSrcweir# (a copy is included in the LICENSE file that accompanied this code). 20cdf0e10cSrcweir# 21cdf0e10cSrcweir# You should have received a copy of the GNU Lesser General Public License 22cdf0e10cSrcweir# version 3 along with OpenOffice.org. If not, see 23cdf0e10cSrcweir# <http://www.openoffice.org/license.html> 24cdf0e10cSrcweir# for a copy of the LGPLv3 License. 25cdf0e10cSrcweir# 26cdf0e10cSrcweir#************************************************************************* 27cdf0e10cSrcweir 28cdf0e10cSrcweir$(eval $(call gb_Library_Library,xo)) 29cdf0e10cSrcweir 30cdf0e10cSrcweir$(eval $(call gb_Library_set_componentfile,xo,xmloff/util/xo)) 31cdf0e10cSrcweir 32cdf0e10cSrcweir$(eval $(call gb_Library_add_package_headers,xo,xmloff_inc)) 33cdf0e10cSrcweir 34cdf0e10cSrcweir$(eval $(call gb_Library_add_precompiled_header,xo,$(SRCDIR)/xmloff/inc/pch/precompiled_xmloff)) 35cdf0e10cSrcweir 36cdf0e10cSrcweir$(eval $(call gb_Library_set_include,xo,\ 37cdf0e10cSrcweir $$(SOLARINC) \ 38cdf0e10cSrcweir -I. \ 39cdf0e10cSrcweir -I$(SRCDIR)/xmloff/inc \ 40cdf0e10cSrcweir -I$(SRCDIR)/xmloff/source/inc \ 41cdf0e10cSrcweir -I$(SRCDIR)/xmloff/inc/pch \ 42cdf0e10cSrcweir -I$(OUTDIR)/inc/offuh \ 43cdf0e10cSrcweir)) 44cdf0e10cSrcweir 45cdf0e10cSrcweir$(eval $(call gb_Library_set_defs,xo,\ 46cdf0e10cSrcweir $$(DEFS) \ 47cdf0e10cSrcweir -DXMLOFF_DLLIMPLEMENTATION \ 48cdf0e10cSrcweir)) 49cdf0e10cSrcweir 50cdf0e10cSrcweir$(eval $(call gb_Library_add_linked_libs,xo,\ 51cdf0e10cSrcweir basegfx \ 52cdf0e10cSrcweir comphelper \ 53cdf0e10cSrcweir cppu \ 54cdf0e10cSrcweir cppuhelper \ 55cdf0e10cSrcweir i18nisolang1 \ 56cdf0e10cSrcweir sal \ 57cdf0e10cSrcweir stl \ 58cdf0e10cSrcweir svl \ 59cdf0e10cSrcweir tl \ 60cdf0e10cSrcweir utl \ 61cdf0e10cSrcweir vos3 \ 62cdf0e10cSrcweir $(gb_STDLIBS) \ 63cdf0e10cSrcweir)) 64cdf0e10cSrcweir 65cdf0e10cSrcweir$(eval $(call gb_Library_add_exception_objects,xo,\ 66cdf0e10cSrcweir xmloff/source/chart/ColorPropertySet \ 67cdf0e10cSrcweir xmloff/source/chart/PropertyMaps \ 68cdf0e10cSrcweir xmloff/source/chart/SchXMLAutoStylePoolP \ 69cdf0e10cSrcweir xmloff/source/chart/SchXMLAxisContext \ 70cdf0e10cSrcweir xmloff/source/chart/SchXMLCalculationSettingsContext \ 71cdf0e10cSrcweir xmloff/source/chart/SchXMLChartContext \ 72cdf0e10cSrcweir xmloff/source/chart/SchXMLEnumConverter \ 73cdf0e10cSrcweir xmloff/source/chart/SchXMLExport \ 74cdf0e10cSrcweir xmloff/source/chart/SchXMLImport \ 75cdf0e10cSrcweir xmloff/source/chart/SchXMLLegendContext \ 76cdf0e10cSrcweir xmloff/source/chart/SchXMLParagraphContext \ 77cdf0e10cSrcweir xmloff/source/chart/SchXMLPlotAreaContext \ 78cdf0e10cSrcweir xmloff/source/chart/SchXMLSeries2Context \ 79cdf0e10cSrcweir xmloff/source/chart/SchXMLSeriesHelper \ 80cdf0e10cSrcweir xmloff/source/chart/SchXMLTableContext \ 81cdf0e10cSrcweir xmloff/source/chart/SchXMLTextListContext \ 82cdf0e10cSrcweir xmloff/source/chart/SchXMLTools \ 83cdf0e10cSrcweir xmloff/source/chart/XMLAxisPositionPropertyHdl \ 84cdf0e10cSrcweir xmloff/source/chart/XMLChartPropertyContext \ 85cdf0e10cSrcweir xmloff/source/chart/XMLChartStyleContext \ 86cdf0e10cSrcweir xmloff/source/chart/XMLErrorBarStylePropertyHdl \ 87cdf0e10cSrcweir xmloff/source/chart/XMLErrorIndicatorPropertyHdl \ 88cdf0e10cSrcweir xmloff/source/chart/XMLLabelSeparatorContext \ 89cdf0e10cSrcweir xmloff/source/chart/XMLSymbolImageContext \ 90cdf0e10cSrcweir xmloff/source/chart/XMLSymbolTypePropertyHdl \ 91cdf0e10cSrcweir xmloff/source/chart/XMLTextOrientationHdl \ 92cdf0e10cSrcweir xmloff/source/chart/contexts \ 93cdf0e10cSrcweir xmloff/source/chart/transporttypes \ 94cdf0e10cSrcweir xmloff/source/core/DocumentSettingsContext \ 95cdf0e10cSrcweir xmloff/source/core/DomBuilderContext \ 96cdf0e10cSrcweir xmloff/source/core/DomExport \ 97cdf0e10cSrcweir xmloff/source/core/ProgressBarHelper \ 98cdf0e10cSrcweir xmloff/source/core/PropertySetMerger \ 99cdf0e10cSrcweir xmloff/source/core/RDFaExportHelper \ 100cdf0e10cSrcweir xmloff/source/core/RDFaImportHelper \ 101cdf0e10cSrcweir xmloff/source/core/SettingsExportHelper \ 102cdf0e10cSrcweir xmloff/source/core/XMLBase64Export \ 103cdf0e10cSrcweir xmloff/source/core/XMLBase64ImportContext \ 104cdf0e10cSrcweir xmloff/source/core/XMLBasicExportFilter \ 105cdf0e10cSrcweir xmloff/source/core/XMLEmbeddedObjectExportFilter \ 106cdf0e10cSrcweir xmloff/source/core/XMLEmbeddedObjectImportContext \ 107cdf0e10cSrcweir xmloff/source/core/attrlist \ 108cdf0e10cSrcweir xmloff/source/core/facreg \ 109cdf0e10cSrcweir xmloff/source/core/i18nmap \ 110cdf0e10cSrcweir xmloff/source/core/nmspmap \ 111cdf0e10cSrcweir xmloff/source/core/unoatrcn \ 112cdf0e10cSrcweir xmloff/source/core/unointerfacetouniqueidentifiermapper \ 113cdf0e10cSrcweir xmloff/source/core/xmlcnitm \ 114cdf0e10cSrcweir xmloff/source/core/xmlehelp \ 115cdf0e10cSrcweir xmloff/source/core/xmlerror \ 116cdf0e10cSrcweir xmloff/source/core/xmlexp \ 117cdf0e10cSrcweir xmloff/source/core/xmlictxt \ 118cdf0e10cSrcweir xmloff/source/core/xmlimp \ 119cdf0e10cSrcweir xmloff/source/core/xmltkmap \ 120cdf0e10cSrcweir xmloff/source/core/xmltoken \ 121cdf0e10cSrcweir xmloff/source/core/xmluconv \ 122*ddde725dSArmin Le Grand xmloff/source/core/xmlmultiimagehelper \ 123cdf0e10cSrcweir xmloff/source/draw/EnhancedCustomShapeToken \ 124cdf0e10cSrcweir xmloff/source/draw/XMLGraphicsDefaultStyle \ 125cdf0e10cSrcweir xmloff/source/draw/XMLImageMapContext \ 126cdf0e10cSrcweir xmloff/source/draw/XMLImageMapExport \ 127cdf0e10cSrcweir xmloff/source/draw/XMLNumberStyles \ 128cdf0e10cSrcweir xmloff/source/draw/XMLReplacementImageContext \ 129cdf0e10cSrcweir xmloff/source/draw/XMLShapePropertySetContext \ 130cdf0e10cSrcweir xmloff/source/draw/XMLShapeStyleContext \ 131cdf0e10cSrcweir xmloff/source/draw/animationexport \ 132cdf0e10cSrcweir xmloff/source/draw/animationimport \ 133cdf0e10cSrcweir xmloff/source/draw/animexp \ 134cdf0e10cSrcweir xmloff/source/draw/animimp \ 135cdf0e10cSrcweir xmloff/source/draw/descriptionimp \ 136cdf0e10cSrcweir xmloff/source/draw/eventimp \ 137cdf0e10cSrcweir xmloff/source/draw/layerexp \ 138cdf0e10cSrcweir xmloff/source/draw/layerimp \ 139cdf0e10cSrcweir xmloff/source/draw/numithdl \ 140cdf0e10cSrcweir xmloff/source/draw/propimp0 \ 141cdf0e10cSrcweir xmloff/source/draw/sdpropls \ 142cdf0e10cSrcweir xmloff/source/draw/sdxmlexp \ 143cdf0e10cSrcweir xmloff/source/draw/sdxmlimp \ 144cdf0e10cSrcweir xmloff/source/draw/shapeexport \ 145cdf0e10cSrcweir xmloff/source/draw/shapeexport2 \ 146cdf0e10cSrcweir xmloff/source/draw/shapeexport3 \ 147cdf0e10cSrcweir xmloff/source/draw/shapeexport4 \ 148cdf0e10cSrcweir xmloff/source/draw/shapeimport \ 149cdf0e10cSrcweir xmloff/source/draw/viewcontext \ 150cdf0e10cSrcweir xmloff/source/draw/xexptran \ 151cdf0e10cSrcweir xmloff/source/draw/ximp3dobject \ 152cdf0e10cSrcweir xmloff/source/draw/ximp3dscene \ 153cdf0e10cSrcweir xmloff/source/draw/ximpbody \ 154cdf0e10cSrcweir xmloff/source/draw/ximpcustomshape \ 155cdf0e10cSrcweir xmloff/source/draw/ximpgrp \ 156cdf0e10cSrcweir xmloff/source/draw/ximplink \ 157cdf0e10cSrcweir xmloff/source/draw/ximpnote \ 158cdf0e10cSrcweir xmloff/source/draw/ximppage \ 159cdf0e10cSrcweir xmloff/source/draw/ximpshap \ 160cdf0e10cSrcweir xmloff/source/draw/ximpshow \ 161cdf0e10cSrcweir xmloff/source/draw/ximpstyl \ 162cdf0e10cSrcweir xmloff/source/forms/attriblistmerge \ 163cdf0e10cSrcweir xmloff/source/forms/controlelement \ 164cdf0e10cSrcweir xmloff/source/forms/controlpropertyhdl \ 165cdf0e10cSrcweir xmloff/source/forms/controlpropertymap \ 166cdf0e10cSrcweir xmloff/source/forms/elementexport \ 167cdf0e10cSrcweir xmloff/source/forms/elementimport \ 168cdf0e10cSrcweir xmloff/source/forms/eventexport \ 169cdf0e10cSrcweir xmloff/source/forms/eventimport \ 170cdf0e10cSrcweir xmloff/source/forms/formattributes \ 171cdf0e10cSrcweir xmloff/source/forms/formcellbinding \ 172cdf0e10cSrcweir xmloff/source/forms/formenums \ 173cdf0e10cSrcweir xmloff/source/forms/formevents \ 174cdf0e10cSrcweir xmloff/source/forms/formlayerexport \ 175cdf0e10cSrcweir xmloff/source/forms/formlayerimport \ 176cdf0e10cSrcweir xmloff/source/forms/formsimp \ 177cdf0e10cSrcweir xmloff/source/forms/formstyles \ 178cdf0e10cSrcweir xmloff/source/forms/gridcolumnproptranslator \ 179cdf0e10cSrcweir xmloff/source/forms/layerexport \ 180cdf0e10cSrcweir xmloff/source/forms/layerimport \ 181cdf0e10cSrcweir xmloff/source/forms/logging \ 182cdf0e10cSrcweir xmloff/source/forms/officeforms \ 183cdf0e10cSrcweir xmloff/source/forms/propertyexport \ 184cdf0e10cSrcweir xmloff/source/forms/propertyimport \ 185cdf0e10cSrcweir xmloff/source/forms/property_meta_data \ 186cdf0e10cSrcweir xmloff/source/forms/strings \ 187cdf0e10cSrcweir xmloff/source/forms/valueproperties \ 188cdf0e10cSrcweir xmloff/source/forms/handler/form_handler_factory \ 189cdf0e10cSrcweir xmloff/source/forms/handler/property_handler_base \ 190cdf0e10cSrcweir xmloff/source/forms/handler/vcl_date_handler \ 191cdf0e10cSrcweir xmloff/source/forms/handler/vcl_time_handler \ 192cdf0e10cSrcweir xmloff/source/meta/MetaExportComponent \ 193cdf0e10cSrcweir xmloff/source/meta/MetaImportComponent \ 194cdf0e10cSrcweir xmloff/source/meta/xmlmetae \ 195cdf0e10cSrcweir xmloff/source/meta/xmlmetai \ 196cdf0e10cSrcweir xmloff/source/meta/xmlversion \ 197cdf0e10cSrcweir xmloff/source/script/XMLEventExport \ 198cdf0e10cSrcweir xmloff/source/script/XMLEventImportHelper \ 199cdf0e10cSrcweir xmloff/source/script/XMLEventsImportContext \ 200cdf0e10cSrcweir xmloff/source/script/XMLScriptContextFactory \ 201cdf0e10cSrcweir xmloff/source/script/XMLScriptExportHandler \ 202cdf0e10cSrcweir xmloff/source/script/XMLStarBasicContextFactory \ 203cdf0e10cSrcweir xmloff/source/script/XMLStarBasicExportHandler \ 204cdf0e10cSrcweir xmloff/source/script/xmlbasici \ 205cdf0e10cSrcweir xmloff/source/script/xmlscripti \ 206cdf0e10cSrcweir xmloff/source/style/AttributeContainerHandler \ 207cdf0e10cSrcweir xmloff/source/style/DashStyle \ 208cdf0e10cSrcweir xmloff/source/style/DrawAspectHdl \ 209cdf0e10cSrcweir xmloff/source/style/EnumPropertyHdl \ 210cdf0e10cSrcweir xmloff/source/style/FillStyleContext \ 211cdf0e10cSrcweir xmloff/source/style/GradientStyle \ 212cdf0e10cSrcweir xmloff/source/style/HatchStyle \ 213cdf0e10cSrcweir xmloff/source/style/ImageStyle \ 214cdf0e10cSrcweir xmloff/source/style/MarkerStyle \ 215cdf0e10cSrcweir xmloff/source/style/MultiPropertySetHelper \ 216cdf0e10cSrcweir xmloff/source/style/NamedBoolPropertyHdl \ 217cdf0e10cSrcweir xmloff/source/style/PageHeaderFooterContext \ 218cdf0e10cSrcweir xmloff/source/style/PageMasterExportPropMapper \ 219cdf0e10cSrcweir xmloff/source/style/PageMasterImportContext \ 220cdf0e10cSrcweir xmloff/source/style/PageMasterImportPropMapper \ 221cdf0e10cSrcweir xmloff/source/style/PageMasterPropHdl \ 222cdf0e10cSrcweir xmloff/source/style/PageMasterPropHdlFactory \ 223cdf0e10cSrcweir xmloff/source/style/PageMasterPropMapper \ 224cdf0e10cSrcweir xmloff/source/style/PageMasterStyleMap \ 225cdf0e10cSrcweir xmloff/source/style/PagePropertySetContext \ 226cdf0e10cSrcweir xmloff/source/style/SinglePropertySetInfoCache \ 227cdf0e10cSrcweir xmloff/source/style/StyleMap \ 228cdf0e10cSrcweir xmloff/source/style/TransGradientStyle \ 229cdf0e10cSrcweir xmloff/source/style/VisAreaContext \ 230cdf0e10cSrcweir xmloff/source/style/VisAreaExport \ 231cdf0e10cSrcweir xmloff/source/style/WordWrapPropertyHdl \ 232cdf0e10cSrcweir xmloff/source/style/XMLBackgroundImageContext \ 233cdf0e10cSrcweir xmloff/source/style/XMLBackgroundImageExport \ 234cdf0e10cSrcweir xmloff/source/style/XMLBitmapLogicalSizePropertyHandler \ 235cdf0e10cSrcweir xmloff/source/style/XMLBitmapRepeatOffsetPropertyHandler \ 236cdf0e10cSrcweir xmloff/source/style/XMLClipPropertyHandler \ 237cdf0e10cSrcweir xmloff/source/style/XMLConstantsPropertyHandler \ 238cdf0e10cSrcweir xmloff/source/style/XMLElementPropertyContext \ 239cdf0e10cSrcweir xmloff/source/style/XMLFillBitmapSizePropertyHandler \ 240cdf0e10cSrcweir xmloff/source/style/XMLFontAutoStylePool \ 241cdf0e10cSrcweir xmloff/source/style/XMLFontStylesContext \ 242cdf0e10cSrcweir xmloff/source/style/XMLFootnoteSeparatorExport \ 243cdf0e10cSrcweir xmloff/source/style/XMLFootnoteSeparatorImport \ 244cdf0e10cSrcweir xmloff/source/style/XMLIsPercentagePropertyHandler \ 245cdf0e10cSrcweir xmloff/source/style/XMLPageExport \ 246cdf0e10cSrcweir xmloff/source/style/XMLPercentOrMeasurePropertyHandler \ 247cdf0e10cSrcweir xmloff/source/style/XMLRectangleMembersHandler \ 248cdf0e10cSrcweir xmloff/source/style/adjushdl \ 249cdf0e10cSrcweir xmloff/source/style/backhdl \ 250cdf0e10cSrcweir xmloff/source/style/bordrhdl \ 251cdf0e10cSrcweir xmloff/source/style/breakhdl \ 252cdf0e10cSrcweir xmloff/source/style/cdouthdl \ 253cdf0e10cSrcweir xmloff/source/style/chrhghdl \ 254cdf0e10cSrcweir xmloff/source/style/chrlohdl \ 255cdf0e10cSrcweir xmloff/source/style/csmaphdl \ 256cdf0e10cSrcweir xmloff/source/style/durationhdl \ 257cdf0e10cSrcweir xmloff/source/style/escphdl \ 258cdf0e10cSrcweir xmloff/source/style/fonthdl \ 259cdf0e10cSrcweir xmloff/source/style/impastp1 \ 260cdf0e10cSrcweir xmloff/source/style/impastp2 \ 261cdf0e10cSrcweir xmloff/source/style/impastp3 \ 262cdf0e10cSrcweir xmloff/source/style/impastp4 \ 263cdf0e10cSrcweir xmloff/source/style/kernihdl \ 264cdf0e10cSrcweir xmloff/source/style/lspachdl \ 265cdf0e10cSrcweir xmloff/source/style/numehelp \ 266cdf0e10cSrcweir xmloff/source/style/opaquhdl \ 267cdf0e10cSrcweir xmloff/source/style/postuhdl \ 268cdf0e10cSrcweir xmloff/source/style/prhdlfac \ 269cdf0e10cSrcweir xmloff/source/style/prstylei \ 270cdf0e10cSrcweir xmloff/source/style/shadwhdl \ 271cdf0e10cSrcweir xmloff/source/style/shdwdhdl \ 272cdf0e10cSrcweir xmloff/source/style/styleexp \ 273cdf0e10cSrcweir xmloff/source/style/tabsthdl \ 274cdf0e10cSrcweir xmloff/source/style/undlihdl \ 275cdf0e10cSrcweir xmloff/source/style/uniref \ 276cdf0e10cSrcweir xmloff/source/style/weighhdl \ 277cdf0e10cSrcweir xmloff/source/style/xmlaustp \ 278cdf0e10cSrcweir xmloff/source/style/xmlbahdl \ 279cdf0e10cSrcweir xmloff/source/style/xmlexppr \ 280cdf0e10cSrcweir xmloff/source/style/xmlimppr \ 281cdf0e10cSrcweir xmloff/source/style/xmlnume \ 282cdf0e10cSrcweir xmloff/source/style/xmlnumfe \ 283cdf0e10cSrcweir xmloff/source/style/xmlnumfi \ 284cdf0e10cSrcweir xmloff/source/style/xmlnumi \ 285cdf0e10cSrcweir xmloff/source/style/xmlprcon \ 286cdf0e10cSrcweir xmloff/source/style/xmlprhdl \ 287cdf0e10cSrcweir xmloff/source/style/xmlprmap \ 288cdf0e10cSrcweir xmloff/source/style/xmlstyle \ 289cdf0e10cSrcweir xmloff/source/style/xmltabe \ 290cdf0e10cSrcweir xmloff/source/style/xmltabi \ 291cdf0e10cSrcweir xmloff/source/table/XMLTableExport \ 292cdf0e10cSrcweir xmloff/source/table/XMLTableImport \ 293cdf0e10cSrcweir xmloff/source/text/XMLAutoMarkFileContext \ 294cdf0e10cSrcweir xmloff/source/text/XMLAutoTextContainerEventImport \ 295cdf0e10cSrcweir xmloff/source/text/XMLAutoTextEventExport \ 296cdf0e10cSrcweir xmloff/source/text/XMLAutoTextEventImport \ 297cdf0e10cSrcweir xmloff/source/text/XMLCalculationSettingsContext \ 298cdf0e10cSrcweir xmloff/source/text/XMLChangeElementImportContext \ 299cdf0e10cSrcweir xmloff/source/text/XMLChangeImportContext \ 300cdf0e10cSrcweir xmloff/source/text/XMLChangeInfoContext \ 301cdf0e10cSrcweir xmloff/source/text/XMLChangedRegionImportContext \ 302cdf0e10cSrcweir xmloff/source/text/XMLFootnoteBodyImportContext \ 303cdf0e10cSrcweir xmloff/source/text/XMLFootnoteConfigurationImportContext \ 304cdf0e10cSrcweir xmloff/source/text/XMLFootnoteImportContext \ 305cdf0e10cSrcweir xmloff/source/text/XMLIndexAlphabeticalSourceContext \ 306cdf0e10cSrcweir xmloff/source/text/XMLIndexBibliographyConfigurationContext \ 307cdf0e10cSrcweir xmloff/source/text/XMLIndexBibliographyEntryContext \ 308cdf0e10cSrcweir xmloff/source/text/XMLIndexBibliographySourceContext \ 309cdf0e10cSrcweir xmloff/source/text/XMLIndexBodyContext \ 310cdf0e10cSrcweir xmloff/source/text/XMLIndexChapterInfoEntryContext \ 311cdf0e10cSrcweir xmloff/source/text/XMLIndexIllustrationSourceContext \ 312cdf0e10cSrcweir xmloff/source/text/XMLIndexMarkExport \ 313cdf0e10cSrcweir xmloff/source/text/XMLIndexObjectSourceContext \ 314cdf0e10cSrcweir xmloff/source/text/XMLIndexSimpleEntryContext \ 315cdf0e10cSrcweir xmloff/source/text/XMLIndexSourceBaseContext \ 316cdf0e10cSrcweir xmloff/source/text/XMLIndexSpanEntryContext \ 317cdf0e10cSrcweir xmloff/source/text/XMLIndexTOCContext \ 318cdf0e10cSrcweir xmloff/source/text/XMLIndexTOCSourceContext \ 319cdf0e10cSrcweir xmloff/source/text/XMLIndexTOCStylesContext \ 320cdf0e10cSrcweir xmloff/source/text/XMLIndexTabStopEntryContext \ 321cdf0e10cSrcweir xmloff/source/text/XMLIndexTableSourceContext \ 322cdf0e10cSrcweir xmloff/source/text/XMLIndexTemplateContext \ 323cdf0e10cSrcweir xmloff/source/text/XMLIndexTitleTemplateContext \ 324cdf0e10cSrcweir xmloff/source/text/XMLIndexUserSourceContext \ 325cdf0e10cSrcweir xmloff/source/text/XMLLineNumberingExport \ 326cdf0e10cSrcweir xmloff/source/text/XMLLineNumberingImportContext \ 327cdf0e10cSrcweir xmloff/source/text/XMLLineNumberingSeparatorImportContext \ 328cdf0e10cSrcweir xmloff/source/text/XMLPropertyBackpatcher \ 329cdf0e10cSrcweir xmloff/source/text/XMLRedlineExport \ 330cdf0e10cSrcweir xmloff/source/text/XMLSectionExport \ 331cdf0e10cSrcweir xmloff/source/text/XMLSectionFootnoteConfigExport \ 332cdf0e10cSrcweir xmloff/source/text/XMLSectionFootnoteConfigImport \ 333cdf0e10cSrcweir xmloff/source/text/XMLSectionImportContext \ 334cdf0e10cSrcweir xmloff/source/text/XMLSectionSourceDDEImportContext \ 335cdf0e10cSrcweir xmloff/source/text/XMLSectionSourceImportContext \ 336cdf0e10cSrcweir xmloff/source/text/XMLStringBufferImportContext \ 337cdf0e10cSrcweir xmloff/source/text/XMLTextCharStyleNamesElementExport \ 338cdf0e10cSrcweir xmloff/source/text/XMLTextColumnsContext \ 339cdf0e10cSrcweir xmloff/source/text/XMLTextColumnsExport \ 340cdf0e10cSrcweir xmloff/source/text/XMLTextFrameContext \ 341cdf0e10cSrcweir xmloff/source/text/XMLTextFrameHyperlinkContext \ 342cdf0e10cSrcweir xmloff/source/text/XMLTextHeaderFooterContext \ 343cdf0e10cSrcweir xmloff/source/text/XMLTextListAutoStylePool \ 344cdf0e10cSrcweir xmloff/source/text/XMLTextListBlockContext \ 345cdf0e10cSrcweir xmloff/source/text/XMLTextListItemContext \ 346cdf0e10cSrcweir xmloff/source/text/XMLTextMarkImportContext \ 347cdf0e10cSrcweir xmloff/source/text/XMLTextMasterPageContext \ 348cdf0e10cSrcweir xmloff/source/text/XMLTextMasterPageExport \ 349cdf0e10cSrcweir xmloff/source/text/XMLTextMasterStylesContext \ 350cdf0e10cSrcweir xmloff/source/text/XMLTextNumRuleInfo \ 351cdf0e10cSrcweir xmloff/source/text/XMLTextPropertySetContext \ 352cdf0e10cSrcweir xmloff/source/text/XMLTextShapeImportHelper \ 353cdf0e10cSrcweir xmloff/source/text/XMLTextShapeStyleContext \ 354cdf0e10cSrcweir xmloff/source/text/XMLTextTableContext \ 355cdf0e10cSrcweir xmloff/source/text/XMLTrackedChangesImportContext \ 356cdf0e10cSrcweir xmloff/source/text/txtdrope \ 357cdf0e10cSrcweir xmloff/source/text/txtdropi \ 358cdf0e10cSrcweir xmloff/source/text/txtexppr \ 359cdf0e10cSrcweir xmloff/source/text/txtflde \ 360cdf0e10cSrcweir xmloff/source/text/txtfldi \ 361cdf0e10cSrcweir xmloff/source/text/txtftne \ 362cdf0e10cSrcweir xmloff/source/text/txtimp \ 363cdf0e10cSrcweir xmloff/source/text/txtimppr \ 364cdf0e10cSrcweir xmloff/source/text/txtlists \ 365cdf0e10cSrcweir xmloff/source/text/txtparae \ 366cdf0e10cSrcweir xmloff/source/text/txtparai \ 367cdf0e10cSrcweir xmloff/source/text/txtprhdl \ 368cdf0e10cSrcweir xmloff/source/text/txtprmap \ 369cdf0e10cSrcweir xmloff/source/text/txtsecte \ 370cdf0e10cSrcweir xmloff/source/text/txtstyle \ 371cdf0e10cSrcweir xmloff/source/text/txtstyli \ 372cdf0e10cSrcweir xmloff/source/text/txtvfldi \ 373cdf0e10cSrcweir xmloff/source/xforms/SchemaContext \ 374cdf0e10cSrcweir xmloff/source/xforms/SchemaRestrictionContext \ 375cdf0e10cSrcweir xmloff/source/xforms/SchemaSimpleTypeContext \ 376cdf0e10cSrcweir xmloff/source/xforms/TokenContext \ 377cdf0e10cSrcweir xmloff/source/xforms/XFormsBindContext \ 378cdf0e10cSrcweir xmloff/source/xforms/XFormsInstanceContext \ 379cdf0e10cSrcweir xmloff/source/xforms/XFormsModelContext \ 380cdf0e10cSrcweir xmloff/source/xforms/XFormsSubmissionContext \ 381cdf0e10cSrcweir xmloff/source/xforms/xformsapi \ 382cdf0e10cSrcweir xmloff/source/xforms/xformsexport \ 383cdf0e10cSrcweir xmloff/source/xforms/xformsimport \ 384cdf0e10cSrcweir)) 385cdf0e10cSrcweir 386cdf0e10cSrcweir# vim: set noet ts=4 sw=4: 387