aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/modelinglib/qmt/style/styledrelation.cpp
blob: d6324791e5125629e63ecf4dd8b9f29e826a9ea0 (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 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