Changeset 846 for trunk/src/network/access/qnetworkaccessmanager.h
- Timestamp:
- May 5, 2011, 5:36:53 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.7.2 (added) merged: 845 /branches/vendor/nokia/qt/current merged: 844 /branches/vendor/nokia/qt/4.6.3 removed
- Property svn:mergeinfo changed
-
trunk/src/network/access/qnetworkaccessmanager.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 201 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation ([email protected]) … … 63 63 class QNetworkProxyFactory; 64 64 class QSslError; 65 66 67 65 68 66 69 class QNetworkReplyImplPrivate; … … 69 72 { 70 73 Q_OBJECT 74 75 76 77 78 71 79 public: 72 80 enum Operation { … … 76 84 PostOperation, 77 85 DeleteOperation, 86 78 87 79 88 UnknownOperation = 0 80 89 }; 90 91 92 93 94 95 96 97 81 98 82 99 explicit QNetworkAccessManager(QObject *parent = 0); … … 103 120 QNetworkReply *put(const QNetworkRequest &request, const QByteArray &data); 104 121 QNetworkReply *deleteResource(const QNetworkRequest &request); 122 123 124 125 126 127 128 129 130 131 132 133 105 134 106 135 Q_SIGNALS: … … 114 143 #endif 115 144 145 146 147 148 149 150 151 152 116 153 protected: 117 154 virtual QNetworkReply *createRequest(Operation op, const QNetworkRequest &request, … … 123 160 Q_PRIVATE_SLOT(d_func(), void _q_replyFinished()) 124 161 Q_PRIVATE_SLOT(d_func(), void _q_replySslErrors(QList<QSslError>)) 162 163 164 165 125 166 }; 126 167
Note:
See TracChangeset
for help on using the changeset viewer.