aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/modelinglib/qmt/style/styledrelation.cpp
blob: 144e5f22ac7b97e997cc420a11dbb2f53f9522df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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,
                               const CustomRelation *customRelation)
    : m_relation(relation),
      m_endA(endA),
      m_endB(endB),
      m_customRelation(customRelation)
{
}

StyledRelation::~StyledRelation()
{
}

} // namespace qmt