Files
loongoffice/include/xmloff/AutoStyleEntry.hxx
Noel Grandin 110a25fdc2 loplugin:unusedfields
Change-Id: I1827262ad95942cacff589929f9436f8383cf142
Reviewed-on: https://gerrit.libreoffice.org/57642
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2018-07-23 09:55:40 +02:00

32 lines
801 B
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
*/
#ifndef INCLUDED_XMLOFF_AUTOSTYLEENTRY_HXX
#define INCLUDED_XMLOFF_AUTOSTYLEENTRY_HXX
#include <sal/config.h>
#include <xmloff/dllapi.h>
#include <memory>
namespace xmloff
{
struct XMLOFF_DLLPUBLIC AutoStyleEntry
{
OUString m_aParentName;
OUString m_aName;
std::vector<std::pair<OUString, css::uno::Any>> m_aXmlProperties;
};
} // end xmloff
#endif // INCLUDED_XMLOFF_AUTOSTYLEENTRY_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */