Is it possible to to search for an allreay running instance of for example a thread and ''connect'' to it?
Something like this:
Qt Code:
  1. int main(int argc, char *argv[])
  2. {
  3. QApplication a(argc, argv);
  4. MainWindow w;
  5. w.show();
  6. wnThread *th = find(wnThread);
  7. if(th = NULL){
  8. wnThread *th = new wnThread();
  9. th->start();
  10. }
  11. return a.exec();
  12. }
To copy to clipboard, switch view to plain text mode 
I know about dde in Windows but i need a solution for independent operatingsystems.

Thanks