comparison DeDupe.cpp @ 5:5e4985407feb

Add commandline tool updateDeDupe. Fix removal of removed files from DB.
author Tom Fredrik Blenning Klaussen <bfg@blenning.no>
date Wed, 22 Aug 2012 00:41:15 +0200
parents main.cpp@f489b0c9bf99
children b5943e4bf676
comparison
equal deleted inserted replaced
4:f489b0c9bf99 5:5e4985407feb
1 #include "DataController.hpp"
2
3 #include <QtGui/QApplication>
4
5 int main(int argc, char *argv[]) {
6
7 QApplication app(argc, argv);
8
9 DataController dc(true);
10
11 return app.exec();
12 }
13
14