[cse] Add wordlist & related methods.

This commit is contained in:
Tomaz Canabrava 2017-09-14 16:50:25 +02:00 committed by Roeland Jago Douma
parent 69c709714d
commit 2111aeaac1
No known key found for this signature in database
GPG key ID: F941078878347C0C
3 changed files with 2087 additions and 0 deletions

View file

@ -27,6 +27,7 @@ endif()
set(libsync_SRCS
account.cpp
wordlist.cpp
bandwidthmanager.cpp
capabilities.cpp
clientproxy.cpp

2073
src/libsync/wordlist.cpp Normal file

File diff suppressed because it is too large Load diff

13
src/libsync/wordlist.h Normal file
View file

@ -0,0 +1,13 @@
#ifndef WORDLIST_H
#define WORDLIST_H
#include <QList>
#include <QString>
namespace OCC {
namespace WordList {
QStringList getRandomWords(int nr);
}
}
#endif