Brief description of class still missing. More...
#include <Route.h>
Public Member Functions | |
| const Address & | destination () const |
| const Address & | gateway () const |
| Route () | |
| Route (const Address &destination) | |
| Route (const Address &destination, const Address &gateway) | |
| Route (const Route &o) | |
| std::string | toString () const |
Brief description of class still missing.
Full description of class still missing
| Route::Route | ( | ) | [inline] |
{}
| Route::Route | ( | const Address & | destination | ) | [inline] |
: _destination(destination) {}
| Route::Route | ( | const Address & | destination, |
| const Address & | gateway | ||
| ) | [inline] |
: _destination(destination), _gateway(gateway) {}
| Route::Route | ( | const Route & | o | ) | [inline] |
{
_destination=o._destination;
_gateway=o._gateway;
}
| const Address& Route::destination | ( | ) | const [inline] |
Referenced by KernelRoute::destination().
{return _destination;}
| const Address& Route::gateway | ( | ) | const [inline] |
Referenced by KernelRoute::destination().
{return _gateway;}
| std::string Route::toString | ( | ) | const |
References GpCoreTools::Address::isValid(), str, and GpCoreTools::Address::toString().