File indexing completed on 2024-03-24 15:35:15

0001 /*
0002     SPDX-FileCopyrightText: 2015 David Faure <faure@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #include <KProtocolInfo>
0008 #include <QCoreApplication>
0009 #include <QDebug>
0010 
0011 int main(int argc, char **argv)
0012 {
0013     QCoreApplication app(argc, argv);
0014 
0015     qDebug() << KProtocolInfo::protocols();
0016 
0017     return 0;
0018 }