nextcloud-desktop/src/libsync/wordlist.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
233 B
C
Raw Normal View History

2017-09-14 17:50:25 +03:00
#ifndef WORDLIST_H
#define WORDLIST_H
#include <QList>
#include <QString>
namespace OCC {
namespace WordList {
QStringList getRandomWords(int nr);
QString getUnifiedString(const QStringList& l);
2017-09-14 17:50:25 +03:00
}
}
#endif