mirror of
https://github.com/outbackdingo/amnezia-client.git
synced 2026-01-27 10:18:14 +00:00
16 lines
221 B
C++
16 lines
221 B
C++
#include "MobileUtils.h"
|
|
|
|
MobileUtils::MobileUtils(QObject *parent) : QObject(parent)
|
|
{
|
|
}
|
|
|
|
bool MobileUtils::shareText(const QStringList &)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
QString MobileUtils::openFile()
|
|
{
|
|
return QString();
|
|
}
|