It really depends on what you like. Qt is STL compatible, but you might want to get rid of STL dependency in favour of using Qt classes which in many cases are much faster than their STL counterparts.
BTW. You might want to replace the "system()" call with QProcess. Using system() will cause your GUI to be irresponsive during the life of that child process. Using QProcess you can avoid that.
Bookmarks