mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-27 15:24:05 +00:00
20 lines
348 B
C++
20 lines
348 B
C++
|
/* This file is (c) 2008-2009 Konstantin Isakov <ikm@users.sf.net>
|
||
|
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
|
||
|
|
||
|
#include <QApplication>
|
||
|
#include "mainwindow.hh"
|
||
|
#include "dictionary.hh"
|
||
|
|
||
|
int main( int argc, char ** argv )
|
||
|
{
|
||
|
QApplication app( argc, argv );
|
||
|
|
||
|
MainWindow m;
|
||
|
|
||
|
m.show();
|
||
|
|
||
|
return app.exec();
|
||
|
}
|
||
|
|
||
|
|