Qt 4.8
Functions
qnetworkaccessmanager.cpp File Reference
#include "qnetworkaccessmanager.h"
#include "qnetworkaccessmanager_p.h"
#include "qnetworkrequest.h"
#include "qnetworkreply.h"
#include "qnetworkreply_p.h"
#include "qnetworkcookie.h"
#include "qabstractnetworkcache.h"
#include "QtNetwork/qnetworksession.h"
#include "QtNetwork/private/qsharednetworksession_p.h"
#include "qnetworkaccesshttpbackend_p.h"
#include "qnetworkaccessftpbackend_p.h"
#include "qnetworkaccessfilebackend_p.h"
#include "qnetworkaccessdebugpipebackend_p.h"
#include "qnetworkaccesscachebackend_p.h"
#include "qnetworkreplydataimpl_p.h"
#include "qnetworkreplyfileimpl_p.h"
#include "QtCore/qbuffer.h"
#include "QtCore/qurl.h"
#include "QtCore/qvector.h"
#include "QtNetwork/private/qauthenticator_p.h"
#include "QtNetwork/qsslconfiguration.h"
#include "QtNetwork/qnetworkconfigmanager.h"
#include "QtNetwork/qhttpmultipart.h"
#include "qhttpmultipart_p.h"
#include "qthread.h"
#include "moc_qnetworkaccessmanager.cpp"

Go to the source code of this file.

Functions

static void ensureInitialized ()
 

Function Documentation

◆ ensureInitialized()

static void ensureInitialized ( )
static

Definition at line 86 of file qnetworkaccessmanager.cpp.

Referenced by QResourcePrivate::ensureChildren(), QScriptValueIterator::hasNext(), QScriptValueIterator::hasPrevious(), QIconLoader::invalidateKey(), QNetworkAccessManager::QNetworkAccessManager(), and QResourcePrivate::~QResourcePrivate().

87 {
88 #ifndef QT_NO_HTTP
89  (void) httpBackend();
90 #endif // QT_NO_HTTP
91 
92 #ifndef QT_NO_FTP
93  (void) ftpBackend();
94 #endif
95 
96 #ifdef QT_BUILD_INTERNAL
97  (void) debugpipeBackend();
98 #endif
99 
100  // leave this one last since it will query the special QAbstractFileEngines
101  (void) fileBackend();
102 }