Lines Matching defs:other
32 DateInterval::DateInterval(const DateInterval& other)
33 : UObject(other) {
34 *this = other;
39 DateInterval::operator=(const DateInterval& other) {
40 if ( this != &other ) {
41 fromDate = other.fromDate;
42 toDate = other.toDate;
55 DateInterval::operator==(const DateInterval& other) const {
56 return ( fromDate == other.fromDate && toDate == other.toDate );