NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.3: NDN, CCN, CCNx, content centric networks
API Documentation
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
strategy-choice-entry.hpp
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
26
#ifndef NFD_DAEMON_TABLE_STRATEGY_CHOICE_ENTRY_HPP
27
#define NFD_DAEMON_TABLE_STRATEGY_CHOICE_ENTRY_HPP
28
29
#include "
core/common.hpp
"
30
31
namespace
nfd
{
32
33
namespace
fw {
34
class
Strategy
;
35
}
// namespace fw
36
37
namespace
name_tree {
38
class
Entry;
39
}
// namespace name_tree
40
41
namespace
strategy_choice {
42
45
class
Entry
: noncopyable
46
{
47
public
:
48
Entry
(
const
Name
& prefix);
49
50
~
Entry
();
51
54
const
Name
&
55
getPrefix
()
const
56
{
57
return
m_prefix;
58
}
59
62
const
Name
&
63
getStrategyInstanceName()
const
;
64
67
fw::Strategy
&
68
getStrategy
()
const
69
{
70
BOOST_ASSERT(m_strategy !=
nullptr
);
71
return
*m_strategy;
72
}
73
74
void
75
setStrategy(unique_ptr<fw::Strategy> strategy);
76
77
private
:
78
Name
m_prefix;
79
unique_ptr<fw::Strategy> m_strategy;
80
81
name_tree::Entry
* m_nameTreeEntry;
82
friend
class
name_tree::Entry
;
83
};
84
85
}
// namespace strategy_choice
86
}
// namespace nfd
87
88
#endif // NFD_DAEMON_TABLE_STRATEGY_CHOICE_ENTRY_HPP
common.hpp
nfd::fw::Strategy
Strategy
Definition:
strategy.cpp:36
nfd::strategy_choice::Entry::getStrategy
fw::Strategy & getStrategy() const
Definition:
strategy-choice-entry.hpp:68
nfd
Copyright (c) 2011-2015 Regents of the University of California.
Definition:
ndn-common.hpp:40
ndn::Name
Represents an absolute name.
Definition:
name.hpp:42
nfd::strategy_choice::Entry
represents a Strategy Choice entry
Definition:
strategy-choice-entry.hpp:45
nfd::strategy_choice::Entry::getPrefix
const Name & getPrefix() const
Definition:
strategy-choice-entry.hpp:55
nfd::fw::Strategy
represents a forwarding strategy
Definition:
strategy.hpp:37
nfd::name_tree::Entry
an entry in the name tree
Definition:
name-tree-entry.hpp:41
ndnSIM
NFD
daemon
table
strategy-choice-entry.hpp
Generated on Thu Nov 2 2017 03:30:29 for ndnSIM by
1.8.11