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

#pragma once

#include "mobject.h"

namespace qmt {

class QMT_EXPORT MComponent : public MObject
{
public:
    MComponent();
    ~MComponent() override;

    void accept(MVisitor *visitor) override;
    void accept(MConstVisitor *visitor) const override;
};

} // namespace qmt