summaryrefslogtreecommitdiffstats
path: root/src/gui/doc/snippets/qtextobject/textobjectinterface.h
blob: f17b233cb862d29de5c8a86ac63f69f9837db6e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#include <QObject>
#include <QTextObjectInterface>

//! [0]
class SvgTextObject : public QObject, public QTextObjectInterface
{
    Q_OBJECT
    Q_INTERFACES(QTextObjectInterface)
//! [0]
};