summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/linguist/test_i18n_exclusion/libs/lib1/lib1.cpp
blob: 187367436c5e74cc0556eb033aedb8fd1a53f4c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#include "lib1.h"

MyObject1::MyObject1(QObject *parent)
    : QObject(parent)
{
}

QString MyObject1::greeting() const
{
    return tr("Hello from MyObject1!");
}