13 lines
252 B
C++
13 lines
252 B
C++
#ifndef TEST_UTILS_H
|
|
#define TEST_UTILS_H
|
|
|
|
#include <iostream>
|
|
|
|
class QString;
|
|
class QUrl;
|
|
|
|
std::ostream& operator <<(std::ostream& stream, const QString& str);
|
|
std::ostream& operator <<(std::ostream& stream, const QUrl& url);
|
|
|
|
#endif // TEST_UTILS_H
|