main.cpp 248 B

1234567891011121314
  1. #include "metavis.h"
  2. #include <QtWidgets/QApplication>
  3. #include "dataTest.h"
  4. #include <QtGui>
  5. /* entrance of the program */
  6. int main(int argc, char *argv[])
  7. {
  8. dataTest test;
  9. QApplication a(argc, argv);
  10. metavis w;
  11. w.show();
  12. return a.exec();
  13. }