blob: 1e9e1a88dc1a4269373dc1553f6021a810adf8df [file] [log] [blame]
Junxiao Shie5e2fce2014-02-10 20:01:53 -07001/* -*- 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
12namespace nfd {
13namespace fw {
14
15/** \class StrategyInfo
16 * \brief contains arbitrary information forwarding strategy places on table entries
17 */
18class StrategyInfo
19{
20public:
21 virtual
22 ~StrategyInfo();
23};
24
25
26inline
27StrategyInfo::~StrategyInfo()
28{
29}
30
31} // namespace fw
32} // namespace nfd
33
34#endif // NFD_FW_STRATEGY_INFO_HPP