view Apps/updateDeDupe.cpp @ 40:f711ddb56ae7

Sort up includes.
author Tom Fredrik Blenning Klaussen <bfg@blenning.no>
date Fri, 07 Sep 2012 13:32:33 +0200
parents 1072257d2bab
children dd086ec3220d
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);
  }

}