mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-23 06:00:27 +03:00
418401a33c
Enter a string list, return a string.
14 lines
233 B
C++
14 lines
233 B
C++
#ifndef WORDLIST_H
|
|
#define WORDLIST_H
|
|
|
|
#include <QList>
|
|
#include <QString>
|
|
|
|
namespace OCC {
|
|
namespace WordList {
|
|
QStringList getRandomWords(int nr);
|
|
QString getUnifiedString(const QStringList& l);
|
|
}
|
|
}
|
|
|
|
#endif
|