#include <channel.hpp>
Inheritance diagram for Channel:
Public Types | |
typedef boost::shared_ptr< Channel > | ChannelPtr |
Smart pointer that clients should use. | |
Public Member Functions | |
virtual | ~Channel () |
A destructor. | |
virtual SimTime | propagationDelay (const PhysicalLayer &sender, const PhysicalLayer &receiver) const |
Compute the propagation delay between two physical layer objects. | |
Protected Member Functions | |
Channel () | |
A constructor. | |
Channel (const Channel &rhs) | |
A copy constructor. |
In the future, this could be the superclass for sensed events as well (e.g., temperature, light), but for now it is just use for the wireless communication channel.
Definition at line 21 of file channel.hpp.
Channel::Channel | ( | ) | [protected] |
A constructor.
This is protected to ensure that all objects are created via new
since we are using smart pointers.
Definition at line 6 of file channel.cpp.
Channel::Channel | ( | const Channel & | rhs | ) | [protected] |
A copy constructor.
This is protected to ensure that all objects are created via new
since we are using smart pointers.
SimTime Channel::propagationDelay | ( | const PhysicalLayer & | sender, | |
const PhysicalLayer & | receiver | |||
) | const [virtual] |
Compute the propagation delay between two physical layer objects.
sender | the sending physical layer. | |
receiver | the receving physical layer. |
Definition at line 16 of file channel.cpp.
References Location::distance(), PhysicalLayer::getLocation(), and SPEED_OF_LIGHT.