Re: QApplication(argc, argv)
See the documentation: http://doc.qt.nokia.com/latest/qappl...l#QApplication
You can see Qt supports several command line parameters common to all Qt applications.
Re: QApplication(argc, argv)
Quote:
Originally Posted by
squidge
Thanks for your reply. I mean, how can I know what is being passed? I'm mentioning that there are arguments to be passed, but, what are they, and how many arguments are being passed?
Re: QApplication(argc, argv)
Read this chapter 11. This is rudiments of C/C++.
Re: QApplication(argc, argv)
Quote:
Originally Posted by
SWEngineer
Thanks for your reply. I mean, how can I know what is being passed? I'm mentioning that there are arguments to be passed, but, what are they, and how many arguments are being passed?
It's passing as many arguments as were on the "command line". In many cases there will be nothing beyond the first element (which is by convention the executable name).