mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
11 lines
201 B
C++
11 lines
201 B
C++
#include "testhelper.h"
|
|
|
|
OCC::FolderDefinition folderDefinition(const QString &path)
|
|
{
|
|
OCC::FolderDefinition d;
|
|
d.localPath = path;
|
|
d.targetPath = path;
|
|
d.alias = path;
|
|
return d;
|
|
}
|