mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
8164ca56ec
This will allow us to send attachments, just like we do on Android. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
18 lines
467 B
C++
18 lines
467 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef IOSSHARE_H
|
|
#define IOSSHARE_H
|
|
|
|
// onlt Qt headers and data structures allowed here
|
|
#include <QString>
|
|
|
|
class IosShare {
|
|
public:
|
|
IosShare();
|
|
~IosShare();
|
|
void supportEmail(const QString &firstPath, const QString &secondPath);
|
|
void shareViaEmail(const QString &subject, const QString &recipient, const QString &body, const QString &firstPath, const QString &secondPath);
|
|
private:
|
|
void *self;
|
|
};
|
|
|
|
#endif /* IOSSHARE_H */
|