PDA

View Full Version : Convert Qt programme to generic C++ programme



kkw90
11th January 2015, 10:44
Hi

Currently I'm working in a project to automate a function of an open source built GUI application which was developed based on Qt framework.
I find it hard to understand how to convert the qt based code to generic C++ code
Please help me out

Thank you

wysota
11th January 2015, 11:38
You have to rewrite all the functionality implemented in Qt using pure C++ and native APIs.

anda_skoa
11th January 2015, 15:12
You have to rewrite all the functionality implemented in Qt using pure C++ and native APIs.

Whicih means you end up doing your program and the things Qt does.

Basically the only reason to do that is because the program needs to be ported to a platform for which Qt doesn't exist.

After all any Qt program is a C++ program already.

Cheers,
_