Mercurial > dedupe
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/DeDupe.cpp Wed Aug 22 00:41:15 2012 +0200 @@ -0,0 +1,14 @@ +#include "DataController.hpp" + +#include <QtGui/QApplication> + +int main(int argc, char *argv[]) { + + QApplication app(argc, argv); + + DataController dc(true); + + return app.exec(); +} + +
