Loading...
Searching...
No Matches
PathDebug.hpp
1#pragma once
2#include <score/model/path/Path.hpp>
3
4#include <QDebug>
5
6template <typename T>
7QDebug& operator<<(QDebug& d, const Path<T>& path)
8{
9 auto& unsafe = path.unsafePath();
10 d << unsafe.toString();
11 return d;
12}
The Path class is a typesafe wrapper around ObjectPath.
Definition Path.hpp:52