aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/modelinglib/qmt/style/styledobject.cpp
blob: 13b5c38f398db24738d84ba1ea315a8fc97b42f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (C) 2016 Jochen Becher
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0

#include "styledobject.h"

namespace qmt {

StyledObject::StyledObject(const DObject *object, const ObjectVisuals &objectVisuals,
                           const QList<const DObject *> &collidingObjects)
    : m_object(object),
      m_objectVisuals(objectVisuals),
      m_collidingObjects(collidingObjects)
{
}

StyledObject::~StyledObject()
{
}

} // namespace qmt