summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/qmake/testdata/subdirs/simple_dll/simple.cpp
blob: 4fb8aa6553ad8696701f993b104517fa6084699f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only


#include "simple.h"

Simple::Simple()
{
}

Simple::~Simple()
{
}

QString Simple::test()
{
    return "This is a test";
}