1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
12 #include <xmloff/dllapi.h>
13 #include <xmloff/xmlictxt.hxx>
15 class XMLTextImportHelper
;
17 /// Handles <text:line-break loext:clear="..."> when the attribute is present.
18 class XMLOFF_DLLPUBLIC SvXMLLineBreakContext
: public SvXMLImportContext
20 XMLTextImportHelper
& m_rHelper
;
23 SvXMLLineBreakContext(SvXMLImport
& rImport
, XMLTextImportHelper
& rHelper
);
26 void SAL_CALL
startFastElement(
28 const css::uno::Reference
<css::xml::sax::XFastAttributeList
>& xAttrList
) override
;
31 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */