2021-11-18 14:58:01 +00:00
|
|
|
#include "debug.h"
|
|
|
|
|
2022-10-18 09:35:04 +00:00
|
|
|
QDebug operator<<(QDebug debug, const dust3d::Uuid& uuid)
|
2021-11-18 14:58:01 +00:00
|
|
|
{
|
|
|
|
QDebugStateSaver stateSaver(debug);
|
|
|
|
debug.nospace() << uuid.toString().c_str();
|
|
|
|
return debug;
|
|
|
|
}
|
|
|
|
|
2022-10-18 09:35:04 +00:00
|
|
|
QDebug operator<<(QDebug debug, const std::string& string)
|
2021-11-18 14:58:01 +00:00
|
|
|
{
|
|
|
|
QDebugStateSaver stateSaver(debug);
|
|
|
|
debug.nospace() << string.c_str();
|
|
|
|
return debug;
|
|
|
|
}
|