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

#include "styledrelation.h"

namespace qmt {

StyledRelation::StyledRelation(const DRelation *relation, const DObject *endA, const DObject *endB)
    : m_relation(relation),
      m_endA(endA),
      m_endB(endB)
{
}

StyledRelation::~StyledRelation()
{
}

} // namespace qmt