mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
libpbd: add operator<< for PropertyChange
This commit is contained in:
parent
1ea104eac1
commit
f65e0b85a8
2 changed files with 10 additions and 0 deletions
|
|
@ -173,4 +173,8 @@ private:
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace std {
|
||||||
|
ostream& operator<< (std::ostream& os, PBD::PropertyChange const & pc);
|
||||||
|
}
|
||||||
|
|
||||||
#endif /* __libpbd_property_basics_h__ */
|
#endif /* __libpbd_property_basics_h__ */
|
||||||
|
|
|
||||||
|
|
@ -89,3 +89,9 @@ OwnedPropertyList::add (PropertyBase& p)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
std::ostream&
|
||||||
|
std::operator<< (std::ostream& os, PropertyChange const & pc)
|
||||||
|
{
|
||||||
|
pc.dump (os);
|
||||||
|
return os;
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue