Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (C) 2014 Named Data Networking Project |
| 4 | * See COPYING for copyright and distribution information. |
| 5 | */ |
| 6 | |
| 7 | #ifndef NFD_FW_STRATEGY_INFO_HPP |
| 8 | #define NFD_FW_STRATEGY_INFO_HPP |
| 9 | |
| 10 | #include "common.hpp" |
| 11 | |
| 12 | namespace nfd { |
| 13 | namespace fw { |
| 14 | |
| 15 | /** \class StrategyInfo |
| 16 | * \brief contains arbitrary information forwarding strategy places on table entries |
| 17 | */ |
| 18 | class StrategyInfo |
| 19 | { |
| 20 | public: |
| 21 | virtual |
| 22 | ~StrategyInfo(); |
| 23 | }; |
| 24 | |
| 25 | |
| 26 | inline |
| 27 | StrategyInfo::~StrategyInfo() |
| 28 | { |
| 29 | } |
| 30 | |
| 31 | } // namespace fw |
| 32 | } // namespace nfd |
| 33 | |
| 34 | #endif // NFD_FW_STRATEGY_INFO_HPP |