#include "mobile.hh" /*** Opérateurs ***/ Mobile Mobile::operator=(const Mobile &m) { if (this == &m) return *this ; this->WifiDevice::operator=(m) ; return *this ; } bool Mobile::operator==(const Mobile &m) const { if (this == &m) return true ; return this->WifiDevice::operator==(m) ; } bool Mobile::operator!=(const Mobile &m) const { return !(*this == m) ; } std::ostream &operator<<(std::ostream &os, const Mobile &m) { os << (WifiDevice) m ; return os ; }