aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/tooling_imports/First/Neighbor.h
blob: e5119bc4c44170890e33b8fd7eb773a594df0100 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef NEIGHBOR_H
#define NEIGHBOR_H

#include <QtQml/qqml.h>

class Neighbor : public QObject
{
    Q_OBJECT
    QML_NAMED_ELEMENT(Neighbor)

public:
    Neighbor(QObject *parent = nullptr);
};

#endif // NEIGHBOR_H