main.cpp 336 B

123456789101112131415161718192021222324
  1. #include <QApplication>
  2. #include <QWidget>
  3. #include <QString>
  4. #ifndef QT_CORE_LIB
  5. #error Expected QT_CORE_LIB
  6. #endif
  7. #ifndef QT_GUI_LIB
  8. #error Expected QT_GUI_LIB
  9. #endif
  10. int main(int argc, char** argv)
  11. {
  12. QApplication app(argc, argv);
  13. QWidget w;
  14. w.setWindowTitle(QString::fromLatin1("SomeTitle"));
  15. w.show();
  16. return 0;
  17. }