view main.cpp @ 2:2833b7f8884a

Sql backend is working. Need to get more speed on comparisson.
author Tom Fredrik Blenning Klaussen <bfg@blenning.no>
date Tue, 21 Aug 2012 14:25:33 +0200
parents a3834af36579
children f489b0c9bf99
line wrap: on
line source

#include "MemoryDbLink.hpp"

#include "PermissionException.hpp"
#include "DataController.hpp"

#include <QtGui/QApplication>
#include <QtCore/QDir>

#include <QtCore/QDebug>
#include <QtCore/QCryptographicHash>
#include <QtCore/QDateTime>

#include <QtGui/QMainWindow>
#include <QtGui/QTableWidget>
#include <QtGui/QHeaderView>

#include <cassert>



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

  QApplication app(argc, argv);


  DataController dc;


  return app.exec();
}