18 lines
278 B
C++
18 lines
278 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
|