Added aqua_speed for rite geo 50 tryker
[ryzomcore.git] / nel / tools / 3d / tile_edit_qt / main.cpp
blob2b00dcbb81c2a08b06fbe23ce1ce6eabcee8f3c9
1 #include "common.h"
3 #include "tile_edit_dlg.h"
5 #ifdef QT_STATICPLUGIN
7 #include <QtPlugin>
9 #if defined(Q_OS_WIN32)
10 Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)
11 #elif defined(Q_OS_MAC)
12 Q_IMPORT_PLUGIN(QCocoaIntegrationPlugin)
13 #elif defined(Q_OS_UNIX)
14 Q_IMPORT_PLUGIN(QXcbIntegrationPlugin)
15 #endif
17 #endif
19 #include "../shared_widgets/common.h"
21 int main(int argc, char *argv[])
24 // Standard initialization
25 // If you are not using these features and wish to reduce the size
26 // of your final executable, you should remove from the following
27 // the specific initialization routines you do not need.
28 NLMISC::CApplicationContext myApplicationContext;
30 NLQT::preApplication();
31 Q_INIT_RESOURCE(tile_edit_qt);
32 QApplication app(argc, argv);
34 CTile_edit_dlg tileEdit;
35 tileEdit.show();
37 return app.exec();