mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-01 13:36:48 +08:00
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:
@@ -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
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user