PDA

View Full Version : Qt InterProcess Communication



QbelcorT
8th October 2008, 00:25
Hi.
I have QtEmbedded under linux, I have a QtGUIServer app (appA). I have another application (appB). I want to be able to start appA, then also start appB. I also want to be able to send appB events to appA or vice-versa. AppB is a separate non-Qt application, just a C program. For example, appB monitors the USB connection or GPIO input, when either of these events happen appA must know about it so the gui can display something.
I was reading QCopChannel, QWSClient, QWSServer and it is confusing on what exactly to use.
Can you suggest something?

Thank you.