mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-24 12:30:32 +08:00
25 lines
596 B
C
25 lines
596 B
C
|
// Copyright (C) 2017 The Qt Company Ltd.
|
||
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||
|
#ifndef TEST_QMAKE_RAWSTRING_OBJECT2_H
|
||
|
#define TEST_QMAKE_RAWSTRING_OBJECT2_H
|
||
|
|
||
|
#define Lu8UR "land"
|
||
|
inline char opener(int i) {
|
||
|
const char text[] = Lu8UR"blah( not a raw string; just juxtaposed";
|
||
|
return text[i];
|
||
|
}
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
class Object2 : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
};
|
||
|
|
||
|
inline char closer(int i) {
|
||
|
const char text[] = "pretend to close it, all the same )blah";
|
||
|
return text[i];
|
||
|
}
|
||
|
|
||
|
#endif // TEST_QMAKE_RAWSTRING_OBJECT2_H
|