main.cpp 360 B

123456789101112131415161718192021
  1. #include <QApplication>
  2. #include <QTextCodec>
  3. #include "ImageLabeler.h"
  4. int main(int argc, char *argv[])
  5. {
  6. QApplication app(argc, argv);
  7. app.setApplicationName(QObject::tr("Image Labeler"));
  8. QTextCodec::setCodecForCStrings(QTextCodec::codecForLocale());
  9. ImageLabeler imageLabeler;
  10. imageLabeler.show();
  11. return app.exec();
  12. }
  13. /*
  14. *
  15. */