cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
19 lines
321 B
C++
19 lines
321 B
C++
/*
|
|
SPDX-FileCopyrightText: 2015 David Faure <faure@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include <KProtocolInfo>
|
|
#include <QCoreApplication>
|
|
#include <QDebug>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
QCoreApplication app(argc, argv);
|
|
|
|
qDebug() << KProtocolInfo::protocols();
|
|
|
|
return 0;
|
|
}
|