Adding waf script for building
diff --git a/src/nlsr_rte.hpp b/src/nlsr_rte.hpp
new file mode 100644
index 0000000..6f64836
--- /dev/null
+++ b/src/nlsr_rte.hpp
@@ -0,0 +1,48 @@
+#ifndef NLSR_RTE_HPP
+#define NLSR_RTE_HPP
+
+#include<iostream>
+
+#include "nlsr_nhl.hpp"
+
+using namespace std;
+
+class RoutingTableEntry
+{
+public:
+ RoutingTableEntry()
+ : destination()
+ , nhl()
+ {
+
+ }
+
+ ~RoutingTableEntry()
+ {
+ }
+
+ RoutingTableEntry(string dest)
+ : nhl()
+ {
+ destination=dest;
+ }
+
+ string getDestination()
+ {
+ return destination;
+ }
+
+ Nhl& getNhl()
+ {
+ return nhl;
+ }
+
+private:
+ string destination;
+ Nhl nhl;
+};
+
+ostream&
+operator<<(ostream& os, RoutingTableEntry &rte);
+
+#endif