File: kprotocolinfo_dumper.cpp

package info (click to toggle)
kf6-kio 6.20.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 37,788 kB
  • sloc: cpp: 101,822; xml: 519; ansic: 215; python: 199; ruby: 60; sh: 21; makefile: 17
file content (18 lines) | stat: -rw-r--r-- 321 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
    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;
}