akmhoque | dfa4a5b | 2014-02-03 20:12:29 -0600 | [diff] [blame^] | 1 | #ifndef NLSR_RT_HPP |
2 | #define NLSR_RT_HPP | ||||
3 | |||||
4 | #include<iostream> | ||||
5 | #include<string> | ||||
6 | |||||
7 | #include "nlsr_rte.hpp" | ||||
8 | |||||
9 | using namespace std; | ||||
10 | |||||
11 | class RoutingTable | ||||
12 | { | ||||
13 | public: | ||||
14 | RoutingTable() | ||||
15 | { | ||||
16 | } | ||||
17 | void calculate() | ||||
18 | { | ||||
19 | cout<<"Routing Table Calculating......"<<endl; | ||||
20 | } | ||||
21 | |||||
22 | private: | ||||
23 | std::list< RoutingTableEntry > rTable; | ||||
24 | }; | ||||
25 | |||||
26 | #endif |