1
0
mirror of https://github.com/clementine-player/Clementine synced 2025-02-05 21:53:28 +01:00
John Maguire c043eaba0c Add mostly done M3UParser with basic unit tests.
Add lots of test infrastructure.
2010-03-01 15:40:12 +00:00

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