// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only #include // SCENARIO 4 // this is the "full" version. Operator+ is replaced by a QStringBuilder // based version // with NO_CAST * _not_ defined #define QT_USE_QSTRINGBUILDER #undef QT_NO_CAST_FROM_ASCII #undef QT_NO_CAST_TO_ASCII #include #include #include #include #define LITERAL "some literal" namespace { #define P + #include "../qstringbuilder1/stringbuilder.cpp" #undef P } // namespace class tst_QStringBuilder4 : public QObject { Q_OBJECT private slots: void scenario() { runScenario(); } }; #include "tst_qstringbuilder4.moc" QTEST_APPLESS_MAIN(tst_QStringBuilder4)