Clean and order documentation in source files. Source ready to beta 2 release
[mdictionary] / src / mdictionary / backbone / main.cpp
1 #include <QtGui/QApplication>
2 #include <QMetaType>
3 #include "backbone.h"
4 #include "../../includes/translation.h"
5
6 uint qHash(CommonDictInterface* dict) {
7     return dict->hash();
8 }
9
10 int main(int argc, char *argv[])
11 {
12     QApplication a(argc, argv);
13     qRegisterMetaType<Translation*>("Translation*");
14     Backbone w;
15
16     return a.exec();
17 }
18
19