#include <Ieee80211Radio.h>
Inheritance diagram for Ieee80211Radio:
Protected Member Functions | |
virtual IReceptionModel * | createReceptionModel () |
virtual IRadioModel * | createRadioModel () |
virtual IRadioModel* Ieee80211Radio::createRadioModel | ( | ) | [inline, protected, virtual] |
To be defined to provide a radio model. The radio model is responsible for calculating frame duration, and modelling modulation scheme and possible forward error correction.
Implements AbstractRadio.
00033 {return (IRadioModel *)createOne("Ieee80211RadioModel");}
virtual IReceptionModel* Ieee80211Radio::createReceptionModel | ( | ) | [inline, protected, virtual] |
To be defined to provide a reception model. The reception model is responsible for modelling path loss, interference and antenna gain.
Implements AbstractRadio.
00032 {return (IReceptionModel *)createOne("PathLossReceptionModel");}