Files
amnezia-client/client/platforms/ios/MobileUtils.h
T

23 lines
358 B
C++
Raw Normal View History

2022-07-13 16:08:55 +06:00
#ifndef MOBILEUTILS_H
#define MOBILEUTILS_H
#include <QObject>
#include <QStringList>
class MobileUtils : public QObject
{
2022-07-13 16:08:55 +06:00
Q_OBJECT
public:
explicit MobileUtils(QObject *parent = nullptr);
2022-07-13 16:08:55 +06:00
public slots:
bool shareText(const QStringList &filesToSend);
2023-09-09 01:29:28 +05:00
QString openFile();
signals:
void finished();
2022-07-13 16:08:55 +06:00
};
#endif // MOBILEUTILS_H