blob: 62e5fa18bee8bd7d469c8bbe34fd829e0badb5e5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "odfview.h"
#include <QtGui/QApplication>
#include <QtCore/QTimer>
int main(int argc, char *argv[]) {
QApplication a(argc, argv);
OdfView view;
view.show();
return a.exec();
}
|