/* * qlog4cxx.h * * Created on: Dec 3, 2011 * Author: ssc */ #ifndef QLOG4CXX_H_ #define QLOG4CXX_H_ namespace std { inline ostream& operator<<(ostream& os, const QString& a) { return os << a.toStdString(); } inline ostream& operator<<(ostream& os, const QByteArray& a) { return os << a.constData(); } } #endif /* QLOG4CXX_H_ */