score
Home
Classes
Namespaces
Files
PathDebug.hpp
1
#pragma once
2
#include <score/model/path/Path.hpp>
3
4
#include <QDebug>
5
6
template
<
typename
T>
7
QDebug& operator<<(QDebug& d,
const
Path<T>
& path)
8
{
9
auto
& unsafe = path.unsafePath();
10
d << unsafe.toString();
11
return
d;
12
}
Path< T >