Files
libreoffice/svx/source/inc/svdobjplusdata.hxx
Noel Grandin d4f78fa3b6 loplugin:unnecessaryvirtual in svx..sw
Change-Id: I4ae8de558550e6577c28b95e0aaed74f00d79c29
Reviewed-on: https://gerrit.libreoffice.org/30650
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
2016-11-07 12:06:35 +00:00

46 lines
1.3 KiB
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_SVX_SVDOBJPLUSDATA_HXX
#define INCLUDED_SVX_SVDOBJPLUSDATA_HXX
#include <rtl/ustring.hxx>
class SdrObject;
class SfxBroadcaster;
class SdrObjUserDataList;
class SdrGluePointList;
// Bitsack for DrawObjects
class SdrObjPlusData final
{
friend class SdrObject;
SfxBroadcaster* pBroadcast; // broadcaster, if this object is referenced (bVirtObj=true). Also for connectors etc.
SdrObjUserDataList* pUserDataList; // application specific data
SdrGluePointList* pGluePoints; // glue points for glueing object connectors
// #i68101#
// object name, title and description
OUString aObjName;
OUString aObjTitle;
OUString aObjDescription;
public:
SdrObjPlusData();
~SdrObjPlusData();
SdrObjPlusData* Clone(SdrObject* pObj1) const;
void SetGluePoints(const SdrGluePointList& rPts);
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */