LibreOffice Module writerfilter (master) 1
rtfreferenceproperties.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 */
9
10#pragma once
11
12#include "rtfsprm.hxx"
13
15{
18{
19public:
20 RTFReferenceProperties(RTFSprms aAttributes, RTFSprms aSprms);
21 explicit RTFReferenceProperties(RTFSprms aAttributes);
23 void resolve(Properties& rHandler) override;
25 RTFSprms& getSprms() { return m_aSprms; }
26
27private:
30};
31} // namespace writerfilter::rtftok
32
33/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Handler for properties.
Reference to a resource that generates events and sends them to a handler.
Sends RTFSprm instances to DomainMapper.
RTFReferenceProperties(RTFSprms aAttributes, RTFSprms aSprms)
void resolve(Properties &rHandler) override
Resolves the reference.
A list of RTFSprm with a copy constructor that performs a deep copy.
Definition: rtfsprm.hxx:39