summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/linguist/test_i18n_exclusion/libs/lib2/lib2.cpp
blob: 0839c52163fa4a604569a01597c1ac22a8785867 (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 "lib2.h"

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

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