nextcloud-desktop/src/libsync/wordlist.h
Kevin Ottens a53a87a3eb
Export the WordList functions
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>
2020-10-08 15:58:29 +02:00

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