feat: add missing KF6 framework recipes

This commit is contained in:
2026-05-07 07:53:26 +01:00
parent d8d498f831
commit a69f479b52
2374 changed files with 2610246 additions and 0 deletions
@@ -0,0 +1,27 @@
/**
* SPDX-FileCopyrightText: 2020 Christoph Cullmann <cullmann@kde.org>
* SPDX-License-Identifier: MIT
*/
// BEGIN
#include <string>
#include <QString>
// END
/**
* TODO: improve documentation
* @param magicArgument some magic argument
* @return magic return value
*/
int main(uint64_t magicArgument)
{
if (magicArgument > 1) {
const std::string string = "source file: \"" __FILE__ "\"";
const QString qString(QStringLiteral("test"));
return qrand();
}
/* BUG: bogus integer constant inside next line */
const double g = 1.1e12 * 0b01'01'01'01 - 43a + 0x11234 * 0234ULL - 'c' * 42;
return g > 1.3f;
}