/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ #include "ns3/log.h" #include "ns3/enum.h" #include "ns3/double.h" #include "leo-mock-net-device.h" namespace ns3 { NS_LOG_COMPONENT_DEFINE ("LeoMockNetDevice"); NS_OBJECT_ENSURE_REGISTERED (LeoMockNetDevice); TypeId LeoMockNetDevice::GetTypeId (void) { static TypeId tid = TypeId ("ns3::LeoMockNetDevice") .SetParent () .SetGroupName ("Leo") .AddConstructor () .AddAttribute ("DeviceType", "The type of the mocked device", EnumValue (), MakeEnumAccessor (&LeoMockNetDevice::m_deviceType), MakeEnumChecker ( DeviceType::GND, "ns3::LeoMockNetDevice::NetDeviceType::GND", DeviceType::SAT, "ns3::LeoMockNetDevice::NetDeviceType::SAT")) .AddAttribute ("RxGain", "Receiver gain in dBm", DoubleValue (0.0), MakeDoubleAccessor (&LeoMockNetDevice::m_rxGain), MakeDoubleChecker ()) .AddAttribute ("RxLoss", "Receiver loss in dBm", DoubleValue (0.0), MakeDoubleAccessor (&LeoMockNetDevice::m_rxLoss), MakeDoubleChecker ()) ; return tid; }; LeoMockNetDevice::LeoMockNetDevice () { } LeoMockNetDevice::DeviceType LeoMockNetDevice::GetDeviceType () const { return m_deviceType; } void LeoMockNetDevice::SetDeviceType (LeoMockNetDevice::DeviceType deviceType) { m_deviceType = deviceType; } double LeoMockNetDevice::DoCalcRxPower (double rxPower) const { return rxPower - m_rxLoss + m_rxGain; } }; /* namspace ns3 */