mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-19 20:32:03 +03:00
4e45cab2c1
- the crash with threads goes away by using QMap - add a polling timer
21 lines
257 B
C++
21 lines
257 B
C++
#ifndef MIRALL_SYNCRESULT_H
|
|
#define MIRALL_SYNCRESULT_H
|
|
|
|
#include <QStringList>
|
|
|
|
namespace Mirall
|
|
{
|
|
|
|
class SyncResult
|
|
{
|
|
public:
|
|
SyncResult();
|
|
~SyncResult();
|
|
private:
|
|
QStringList _deletedSource;
|
|
QStringList _deletedDestination;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|