Line data Source code
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 : #include <drawinglayer/primitive2d/openglprimitive2d.hxx>
11 : #include <svx/sdr/primitive2d/svx_primitivetypes2d.hxx>
12 :
13 : using namespace drawinglayer::primitive2d;
14 :
15 0 : OpenGLPrimitive2D::OpenGLPrimitive2D(const Point& rPos)
16 0 : : m_aPos(rPos)
17 : {
18 0 : }
19 :
20 0 : bool OpenGLPrimitive2D::operator==( const BasePrimitive2D& rPrimitive ) const
21 : {
22 0 : if(BasePrimitive2D::operator==(rPrimitive))
23 : {
24 0 : const OpenGLPrimitive2D& rCompare = static_cast< const OpenGLPrimitive2D& >(rPrimitive);
25 0 : return m_aPos == rCompare.getPos();
26 : }
27 0 : return false;
28 : }
29 :
30 0 : ImplPrimitive2DIDBlock(OpenGLPrimitive2D, PRIMITIVE2D_ID_OPENGLPRIMITIVE2D)
31 :
32 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|