summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_interface_link_libraries/somelib.cpp
blob: 106f534bb28f183479772cbc6a4f72f7834e7527 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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

#include "somelib.h"

SomeObject::SomeObject(QObject *parent)
  : QTextDocument(parent)
{
}

int SomeObject::value()
{
    return 0;
}