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

#ifndef _LIB2_H_
#define _LIB2_H_

#include <QObject>

class MyObject2 : public QObject
{
    Q_OBJECT
public:
    MyObject2(QObject *parent = nullptr);
    QString greeting() const;
};

#endif // _LIB2_H_