2010-03-01 15:40:12 +00:00
|
|
|
#ifndef TEST_UTILS_H
|
|
|
|
#define TEST_UTILS_H
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
2010-03-03 19:14:14 +00:00
|
|
|
class QNetworkRequest;
|
2010-03-01 15:40:12 +00:00
|
|
|
class QString;
|
|
|
|
class QUrl;
|
|
|
|
|
|
|
|
std::ostream& operator <<(std::ostream& stream, const QString& str);
|
|
|
|
std::ostream& operator <<(std::ostream& stream, const QUrl& url);
|
2010-03-03 19:14:14 +00:00
|
|
|
std::ostream& operator <<(std::ostream& stream, const QNetworkRequest& req);
|
2010-03-01 15:40:12 +00:00
|
|
|
|
|
|
|
#endif // TEST_UTILS_H
|