nextcloud-desktop/src/mirall/syncresult.h
Duncan Mac-Vicar P 4e45cab2c1 - lot of stability improvements
- the crash with threads goes away by using QMap
- add a polling timer
2011-04-04 18:41:14 +02:00

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