view Apps/updateDeDupe.cpp @ 35:769f43c4c5d0

Introduced NEW_TEST function in CMakeLists.
author Tom Fredrik Blenning Klaussen <bfg@blenning.no>
date Fri, 07 Sep 2012 11:46:46 +0200
parents 1072257d2bab
children f711ddb56ae7
line wrap: on
line source

#include "DataController.hpp"
#include "Exception/Exception.hpp"

#include <QtGui/QApplication>

#include <iostream>

int main(int argc, char *argv[]) {

  try {
    DataController dc(false);
  }
  catch (Exception& e) {
    std::cerr << "Unrecoverable error: " << e.toString().toStdString();
    exit(1);
  }

}