Files
libreoffice/include/xmloff/AutoStyleEntry.hxx
Noel Grandin da3f478695 loplugin:unusedfields in xmloff
Change-Id: I96de7fa324e3d2e3f0f133c93cf73776f4615ed3
Reviewed-on: https://gerrit.libreoffice.org/68134
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2019-03-14 14:04:54 +01:00

33 lines
833 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 <rtl/ustring.hxx>
#include <com/sun/star/uno/Any.hxx>
#include <xmloff/dllapi.h>
#include <utility>
#include <vector>
namespace xmloff
{
struct XMLOFF_DLLPUBLIC AutoStyleEntry
{
std::vector<std::pair<OUString, css::uno::Any>> m_aXmlProperties;
};
} // end xmloff
#endif // INCLUDED_XMLOFF_AUTOSTYLEENTRY_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */