mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-21 02:01:03 +07:00
20 lines
305 B
C++
20 lines
305 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);
|
|
static void openFile();
|
|
};
|
|
|
|
#endif // MOBILEUTILS_H
|