2018-07-09 00:47:07 +02:00
|
|
|
/* -*- 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/.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-03-03 10:17:42 +02:00
|
|
|
#pragma once
|
2018-07-09 00:47:07 +02:00
|
|
|
|
|
|
|
#include <sal/config.h>
|
2019-01-12 22:28:32 +01:00
|
|
|
#include <rtl/ustring.hxx>
|
|
|
|
#include <com/sun/star/uno/Any.hxx>
|
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
2018-07-09 00:47:07 +02:00
|
|
|
|
|
|
|
namespace xmloff
|
|
|
|
{
|
2020-03-03 10:17:42 +02:00
|
|
|
struct AutoStyleEntry
|
2018-07-09 00:47:07 +02:00
|
|
|
{
|
|
|
|
std::vector<std::pair<OUString, css::uno::Any>> m_aXmlProperties;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end xmloff
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|