comparison Apps/updateDeDupe.cpp @ 30:1072257d2bab

Refactor Apps/Binaries into a separate directory.
author Tom Fredrik Blenning Klaussen <bfg@blenning.no>
date Thu, 06 Sep 2012 18:39:01 +0200
parents updateDeDupe.cpp@b2c2c2bf2bbd
children f711ddb56ae7
comparison
equal deleted inserted replaced
29:ad9c92d782dd 30:1072257d2bab
1 #include "DataController.hpp"
2 #include "Exception/Exception.hpp"
3
4 #include <QtGui/QApplication>
5
6 #include <iostream>
7
8 int main(int argc, char *argv[]) {
9
10 try {
11 DataController dc(false);
12 }
13 catch (Exception& e) {
14 std::cerr << "Unrecoverable error: " << e.toString().toStdString();
15 exit(1);
16 }
17
18 }
19
20