aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/modelinglib/qmt/model/mcomponent.h
blob: 83d04d585775788d6e60f9977fa96828956362cf (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 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