score
Home
Classes
Namespaces
Files
Loading...
Searching...
No Matches
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
The Path class is a typesafe wrapper around ObjectPath.
Definition
Path.hpp:52