summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/linguist/test_i18n_exclusion/libs/lib1/lib1.h
blob: 42cd3f5c91a2285627c225d29d2c41771c7dc685 (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 _LIB1_H_
#define _LIB1_H_

#include <QObject>

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

#endif // _LIB1_H_