1234567891011121314151617 |
- #include <QApplication>
- #include <QTextCodec>
- #include "ImageLabeler.h"
- int main(int argc, char *argv[])
- {
- QApplication app(argc, argv);
- app.setApplicationName(QObject::tr("Image Labeler"));
- QTextCodec::setCodecForCStrings(QTextCodec::codecForLocale());
- ImageLabeler imageLabeler;
- imageLabeler.show();
- return app.exec();
- }
|