mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-22 02:01:08 +07:00
18 lines
277 B
C++
18 lines
277 B
C++
#ifndef MOBILEUTILS_H
|
|
#define MOBILEUTILS_H
|
|
|
|
#include <QObject>
|
|
#include <QStringList>
|
|
|
|
class MobileUtils : public QObject {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MobileUtils() = delete;
|
|
|
|
public slots:
|
|
static void shareText(const QStringList& filesToSend);
|
|
};
|
|
|
|
#endif // MOBILEUTILS_H
|