mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-24 05:55:59 +03:00
cb1740ee4a
This version does synchronization, but does not tolerate any file deletions. It will chew your files up!! May contain bugs!!
11 lines
178 B
C++
11 lines
178 B
C++
#include <QtGui/QApplication>
|
|
#include "SyncWindow.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
SyncWindow w;
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|