Lines Matching full:other
31 Measure::Measure(const Measure& other) :
32 UObject(other), unit(0) {
33 *this = other;
36 Measure& Measure::operator=(const Measure& other) {
37 if (this != &other) {
39 number = other.number;
40 unit = (MeasureUnit*) other.unit->clone();
49 UBool Measure::operator==(const UObject& other) const {
50 const Measure* m = (const Measure*) &other;
51 return getDynamicClassID() == other.getDynamicClassID() &&