akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame^] | 1 | #ifndef NLSR_RTE_HPP |
2 | #define NLSR_RTE_HPP | ||||
3 | |||||
4 | #include<iostream> | ||||
5 | |||||
6 | #include "nlsr_nhl.hpp" | ||||
7 | |||||
8 | using namespace std; | ||||
9 | |||||
10 | class RoutingTableEntry | ||||
11 | { | ||||
12 | public: | ||||
13 | RoutingTableEntry() | ||||
14 | : destination() | ||||
15 | , nhl() | ||||
16 | { | ||||
17 | |||||
18 | } | ||||
19 | |||||
20 | ~RoutingTableEntry() | ||||
21 | { | ||||
22 | } | ||||
23 | |||||
24 | RoutingTableEntry(string dest) | ||||
25 | : nhl() | ||||
26 | { | ||||
27 | destination=dest; | ||||
28 | } | ||||
29 | |||||
30 | string getDestination() | ||||
31 | { | ||||
32 | return destination; | ||||
33 | } | ||||
34 | |||||
35 | Nhl& getNhl() | ||||
36 | { | ||||
37 | return nhl; | ||||
38 | } | ||||
39 | |||||
40 | private: | ||||
41 | string destination; | ||||
42 | Nhl nhl; | ||||
43 | }; | ||||
44 | |||||
45 | ostream& | ||||
46 | operator<<(ostream& os, RoutingTableEntry &rte); | ||||
47 | |||||
48 | #endif |