summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_interface_link_libraries/somelib.h
blob: 828937c13cea5076e83f18dfe5f574bea770519a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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

#ifndef SOMELIB_H
#define SOMELIB_H

#include "somelib_export.h"

#include <QTextDocument>

class SOMELIB_EXPORT SomeObject : QTextDocument
{
    Q_OBJECT
public:
    explicit SomeObject(QObject *parent = nullptr);

    int value();
};

#endif