renamed CBaseStreamStringifier to CStreamable

This commit is contained in:
Mathew Sutcliffe
2013-08-18 23:47:29 +01:00
parent da8ba9aac3
commit a6f89ce9ea
9 changed files with 36 additions and 35 deletions

View File

@@ -27,8 +27,8 @@ template <class LATorLON> class CEarthAngle : public BlackMisc::PhysicalQuantiti
// If I do not have the method here, DBus metasystem tries to stream against
// a container: inline const QDBusArgument &operator>>(const QDBusArgument &arg, Container<T> &list)
// Once someone solves this, this methods should go and the
// CBaseStreamStringifier signature should be used
CBaseStreamStringifier &sf = uc;
// CStreamable signature should be used
CStreamable &sf = uc;
return argument >> sf;
}
@@ -40,7 +40,7 @@ template <class LATorLON> class CEarthAngle : public BlackMisc::PhysicalQuantiti
*/
friend QDBusArgument &operator<<(QDBusArgument &argument, const LATorLON &uc)
{
const CBaseStreamStringifier &sf = uc;
const CStreamable &sf = uc;
return argument << sf;
}