summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/moc/pointery_to_incomplete.h
blob: 38dea1334087452a1eb23840ec65c9649e977683 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef POINTERY_TO_INCOMPLETE_H
#define POINTERY_TO_INCOMPLETE_H

#include <QObject>
#include <QSharedPointer>
#include <QWeakPointer>
#include <QPointer>

class FwdClass;

class TestPointeeCanBeIncomplete : public QObject
{
    Q_OBJECT
public:
    void setProp1(QPointer<FwdClass>) {}
    void setProp2(QSharedPointer<FwdClass>) {}
    void setProp3(const QWeakPointer<FwdClass> &) {}
};

#endif // POINTERY_TO_INCOMPLETE_H