testhelper.cpp 201 B

12345678910
  1. #include "testhelper.h"
  2. OCC::FolderDefinition folderDefinition(const QString &path)
  3. {
  4. OCC::FolderDefinition d;
  5. d.localPath = path;
  6. d.targetPath = path;
  7. d.alias = path;
  8. return d;
  9. }