LibreOffice Module drawinglayer (master) 1
sdrglowattribute.cxx
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
11
13{
14SdrGlowAttribute::SdrGlowAttribute(sal_Int32 nRadius, const Color& rColor)
15 : m_nRadius(nRadius)
16 , m_color(rColor)
17{
18}
19
21
23
25
27
29
31{
32 return m_nRadius == rCandidate.m_nRadius && m_color == rCandidate.m_color;
33}
34
35} // end of namespace drawinglayer::attribute
36
37/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
bool operator==(const SdrGlowAttribute &rCandidate) const
SdrGlowAttribute & operator=(const SdrGlowAttribute &)