2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2013 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Stephen Kelly <stephen.kelly@kdab.com>
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2013-07-08 10:17:35 +00:00
|
|
|
|
|
|
|
#ifndef SOMELIB_H
|
|
|
|
#define SOMELIB_H
|
|
|
|
|
|
|
|
#include "somelib_export.h"
|
|
|
|
|
|
|
|
#include <QTextDocument>
|
|
|
|
|
|
|
|
class SOMELIB_EXPORT SomeObject : QTextDocument
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2020-10-07 11:05:48 +00:00
|
|
|
explicit SomeObject(QObject *parent = nullptr);
|
2013-07-08 10:17:35 +00:00
|
|
|
|
|
|
|
int value();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|