nextcloud-desktop/main.cpp
Juan Carlos Cornejo cb1740ee4a Initial commit.
This version does synchronization, but does not tolerate any file deletions.
It will chew your files up!!

May contain bugs!!
2012-02-15 08:55:12 +01:00

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();
}