Files
neochat/src/urlhelper.h
Carl Schwan 4e4f2fac6b Fix android build
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-11-21 17:36:05 +01:00

16 lines
345 B
C++

// SPDX-FileCopyrightText: 2022 Nicolas Fella <nicolas.fella@gmx.de>
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <QObject>
#include <QUrl>
class UrlHelper : public QObject
{
Q_OBJECT
public:
Q_INVOKABLE void openUrl(const QUrl &url);
Q_INVOKABLE void copyTo(const QUrl &origin, const QUrl &destination);
};