Hi there, any idea why I can use this :
#include <QtNetworkConfigurationManager>
It seems that it doesnt exist? I am using qt creator 1.3.1
Thanks
Printable View
Hi there, any idea why I can use this :
#include <QtNetworkConfigurationManager>
It seems that it doesnt exist? I am using qt creator 1.3.1
Thanks
QtNetworkConfigurationManager or QNetworkConfigurationManager?
#include <QNetworkConfigurationManager>
I am trying to run the simple example Qt has for a server , but this class doesnt exist
It was introduced in 4.7.0. Seems you have an older release.
Well,
I just download the qt sdk 2010 last version. And I still have the same problem
Did you enable the networking module?
Yes the networking module is enabled.
So #include <QTcpSocket> works but #include <QNetworkConfigurationManager> doesn't?
Yes exactly.
#include <QTcpSocket> works but not the <QNetworkConfigurationManager>
Added after 13 minutes:
Also another thing i just tested is:
The qnetworkConfigurationManager is not working on my ubuntu OS but i just downloaded the qt sdk 2010 for windows and there is fine.
So whats wrong with my ubuntu installation.
Are you sure you have Qt 4.7.0 installed? Which Qt version does Creator report in its settings?
Ok, finally i found the solution.
It seems that even though I download the SDK 2010, because I didn't uninstall the previous version there was something wrong. So I uninstall everything, and install the qt sdk 2010 and it works.
Thanks a lot for you help wysota