Example #1
0
 bool
 operator==(const Contact<T>& rhs) const
 {
   return time_ == rhs.getTime();
 };
Example #2
0
 Contact(const Contact<T>& c) : source_(c.getSource()), type_(c.getType()), time_(c.getTime()) {};