aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/modelinglib/qmt/diagram/dpackage.cpp
blob: c1e4ffa052059f9019391d3232c1043f494cf881 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright (C) 2016 Jochen Becher
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0

#include "dpackage.h"

#include "dvisitor.h"
#include "dconstvisitor.h"

namespace qmt {

DPackage::DPackage()
{
}

DPackage::~DPackage()
{
}

void DPackage::accept(DVisitor *visitor)
{
    visitor->visitDPackage(this);
}

void DPackage::accept(DConstVisitor *visitor) const
{
    visitor->visitDPackage(this);
}

} // namespace qmt