mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-23 06:00:27 +03:00
a53a87a3eb
Now that they are used from gui/ they need to be properly exported so that linking doesn't fail when visibility is activated (only on our Windows build it seems). Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
16 lines
299 B
C++
16 lines
299 B
C++
#ifndef WORDLIST_H
|
|
#define WORDLIST_H
|
|
|
|
#include <QList>
|
|
#include <QString>
|
|
|
|
#include "owncloudlib.h"
|
|
|
|
namespace OCC {
|
|
namespace WordList {
|
|
OWNCLOUDSYNC_EXPORT QStringList getRandomWords(int nr);
|
|
OWNCLOUDSYNC_EXPORT QString getUnifiedString(const QStringList& l);
|
|
}
|
|
}
|
|
|
|
#endif
|