File indexing completed on 2025-01-26 05:06:20
0001 /* 0002 SPDX-FileCopyrightText: 2023 Nicolas Fella <nicolas.fella@gmx.de> 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 #include <QObject> 0010 #include <QUrl> 0011 0012 class AppLauncher : public QObject 0013 { 0014 Q_OBJECT 0015 public: 0016 Q_INVOKABLE void openUrl(const QUrl &url); 0017 0018 private: 0019 };