reworking of getting the path to the file when saving/opening files

This commit is contained in:
vladimir.kuznetsov 2023-09-07 22:45:01 +05:00
parent e1fa24c251
commit b5dd48ad7b
21 changed files with 167 additions and 243 deletions

View file

@ -4,15 +4,16 @@
#include <QObject>
#include <QStringList>
class MobileUtils : public QObject {
class MobileUtils : public QObject
{
Q_OBJECT
public:
MobileUtils() = delete;
public slots:
static void shareText(const QStringList& filesToSend);
static void shareText(const QStringList &filesToSend);
static void openFile();
};
#endif // MOBILEUTILS_H