mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 21:15:55 +03: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;
|
||
|
}
|