refs #140, changed CValueObject classes to tupel concept

Remarks: Changes looking like an added file result from the shift of namespace voice -> audio
This commit is contained in:
Klaus Basan
2014-03-10 14:48:56 +01:00
parent 8f6a22e833
commit 34320ad3e1
43 changed files with 1293 additions and 768 deletions

View File

@@ -77,6 +77,14 @@ namespace BlackMisc
return TupleConverter<CUser>::toTuple(*this) == TupleConverter<CUser>::toTuple(other);
}
/*
* Unequal?
*/
bool CUser::operator !=(const CUser &other) const
{
return !((*this) == other);
}
/*
* Exchange data
*/
@@ -105,14 +113,6 @@ namespace BlackMisc
this->setCallsign(otherUser.getCallsign());
}
/*
* Unequal?
*/
bool CUser::operator !=(const CUser &other) const
{
return !((*this) == other);
}
/*
* Hash
*/