libpbd: add operator<< for PropertyChange
This commit is contained in:
parent
1ea104eac1
commit
f65e0b85a8
@ -173,4 +173,8 @@ private:
|
||||
|
||||
}
|
||||
|
||||
namespace std {
|
||||
ostream& operator<< (std::ostream& os, PBD::PropertyChange const & pc);
|
||||
}
|
||||
|
||||
#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…
Reference in New Issue
Block a user