Advertisement
orgads

Untitled

Jun 6th, 2013
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #include <QApplication>
  2. #include <QThread>
  3.  
  4. int main(int argc, char *argv[])
  5. {
  6. QApplication app(argc, argv);
  7. QThread a;
  8. QThread b;
  9. a.setObjectName("foo");
  10. b.setObjectName("bar");
  11. a.start();
  12. b.start();
  13. return app.exec();
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement