123456789101112131415161718192021 |
- #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();
- }
- /*
- *
- */
|