Loading...
Searching...
No Matches
IdentifierDebug.hpp
1#pragma once
2#include <score/model/Identifier.hpp>
3
4#include <QDebug>
5
6template <typename tag>
7QDebug operator<<(QDebug dbg, const Id<tag>& c)
8{
9 dbg.nospace() << c.val();
10
11 return dbg.space();
12}
The id_base_t class.
Definition Identifier.hpp:57