aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmltyperegistrar/foreign/foreign_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmltyperegistrar/foreign/foreign_p.h')
-rw-r--r--tests/auto/qml/qmltyperegistrar/foreign/foreign_p.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/auto/qml/qmltyperegistrar/foreign/foreign_p.h b/tests/auto/qml/qmltyperegistrar/foreign/foreign_p.h
deleted file mode 100644
index fe7986471f..0000000000
--- a/tests/auto/qml/qmltyperegistrar/foreign/foreign_p.h
+++ /dev/null
@@ -1,19 +0,0 @@
-// 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 FOREIGN_P_H
-#define FOREIGN_P_H
-
-#include <QtCore/qobject.h>
-
-// qmltyperegistrar will assume this file is reachable under <private/foreign_p.h>
-// It's not true, but this is how it works on actual private headers in Qt.
-// See the trick in tst_qmltyperegistrar's CMakeLists.txt to turn on the --private-includes option.
-class ForeignPrivate : public QObject
-{
- Q_OBJECT
-Q_SIGNALS:
- void happens();
-};
-
-#endif // FOREIGN_P_H