owlps/owlps-positioning/wifidevice.cc

73 lines
1.3 KiB
C++
Raw Normal View History

#include "wifidevice.hh"
using namespace std ;
/*** Constructeurs ***/
WifiDevice::WifiDevice(const string &_ip_addr,
const string &_mac_addr,
const float &_antenna_gain,
const float &_trx_power)
{
ip_addr = _ip_addr ;
mac_addr = _mac_addr ;
antenna_gain = PosUtil::channel_to_frequency(_antenna_gain) ;
trx_power = _trx_power ;
}
WifiDevice::WifiDevice(const WifiDevice &wd)
{
ip_addr = wd.ip_addr ;
mac_addr = wd.mac_addr ;
antenna_gain = wd.antenna_gain ;
trx_power = wd.trx_power ;
}
/*** Opérateurs ***/
const WifiDevice& WifiDevice::operator=(const WifiDevice &wd)
{
if (this == &wd)
return *this ;
ip_addr = wd.ip_addr ;
mac_addr = wd.mac_addr ;
antenna_gain = wd.antenna_gain ;
trx_power = wd.trx_power ;
return *this ;
}
bool WifiDevice::operator==(const WifiDevice &wd) const
{
if (this == &wd)
return true ;
return
ip_addr == wd.ip_addr &&
mac_addr == wd.mac_addr &&
antenna_gain == wd.antenna_gain &&
trx_power == wd.trx_power ;
}
ostream &operator<<(ostream &os, const WifiDevice &wd)
{
os
<< "IP address: " << wd.ip_addr << '\n'
<< "MAC address: " << wd.mac_addr << '\n'
<< "Antenna gain: " << wd.antenna_gain << "dBi" << '\n'
<< "Output power: " << wd.trx_power << "dBm" ;
return os ;
}