Mercurial > dedupe
diff main.cpp @ 0:a3834af36579
Working with memory backend.
| author | Tom Fredrik Blenning Klaussen <bfg@blenning.no> |
|---|---|
| date | Mon, 20 Aug 2012 15:49:48 +0200 |
| parents | |
| children | f489b0c9bf99 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Mon Aug 20 15:49:48 2012 +0200 @@ -0,0 +1,32 @@ +#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(); +} + +
