summaryrefslogtreecommitdiff
path: root/src/libs/modelinglib/qmt/diagram/ddiagram.h
blob: ffbd7333e8bab16ec5e5d4f1bb12ffba5ff86c5f (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 "dobject.h"

namespace qmt {

class QMT_EXPORT DDiagram : public DObject
{
public:
    DDiagram();
    ~DDiagram() override;

    void accept(DVisitor *visitor) override;
    void accept(DConstVisitor *visitor) const override;
};

} // namespace qmt