File indexing completed on 2025-02-09 05:33:25
0001 /* 0002 SPDX-FileCopyrightText: 2015 (c) Matthieu Gallien <matthieu_gallien@yahoo.fr> 0003 0004 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL 0005 */ 0006 0007 #include "upnpssdpengine.h" 0008 0009 #include <QCoreApplication> 0010 0011 int main(int argc, char *argv[]) 0012 { 0013 QCoreApplication app{argc, argv}; 0014 0015 UpnpSsdpEngine ssdpEngine; 0016 0017 return app.exec(); 0018 }