Adding rt, rte, nh
diff --git a/nlsr_rt.hpp b/nlsr_rt.hpp
new file mode 100644
index 0000000..ac9ccfa
--- /dev/null
+++ b/nlsr_rt.hpp
@@ -0,0 +1,26 @@
+#ifndef NLSR_RT_HPP
+#define NLSR_RT_HPP
+
+#include<iostream>
+#include<string>
+
+#include "nlsr_rte.hpp"
+
+using namespace std;
+
+class RoutingTable
+{
+public:
+	RoutingTable()
+	{
+	}
+	void calculate()
+	{
+		cout<<"Routing Table Calculating......"<<endl;
+	}
+
+private:
+	std::list< RoutingTableEntry > rTable;
+};
+
+#endif