table: clear StrategyInfo during strategy change
refs #1234
Change-Id: Idd5383a5f8bc706aceea5a630b93cd4ab9bd2c3a
diff --git a/daemon/table/fib-nexthop.hpp b/daemon/table/fib-nexthop.hpp
index 4dc2b65..72fa687 100644
--- a/daemon/table/fib-nexthop.hpp
+++ b/daemon/table/fib-nexthop.hpp
@@ -9,7 +9,6 @@
#include "common.hpp"
#include "face/face.hpp"
-#include "strategy-info-host.hpp"
namespace nfd {
namespace fib {
@@ -17,20 +16,20 @@
/** \class NextHop
* \brief represents a nexthop record in FIB entry
*/
-class NextHop : public StrategyInfoHost
+class NextHop
{
public:
explicit
NextHop(shared_ptr<Face> face);
-
+
NextHop(const NextHop& other);
-
+
shared_ptr<Face>
getFace() const;
-
+
void
setCost(uint32_t cost);
-
+
uint32_t
getCost() const;