mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
15 lines
233 B
C++
15 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
|