aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/modelinglib/qmt/model/mpackage.cpp
blob: 2b7630071c074c36199f285ed179208f99087a05 (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
30
// Copyright (C) 2016 Jochen Becher
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0

#include "mpackage.h"

#include "mvisitor.h"
#include "mconstvisitor.h"

namespace qmt {

MPackage::MPackage()
    : MObject()
{
}

MPackage::~MPackage()
{
}

void MPackage::accept(MVisitor *visitor)
{
    visitor->visitMPackage(this);
}

void MPackage::accept(MConstVisitor *visitor) const
{
    visitor->visitMPackage(this);
}

} // namespace qmt