NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.0: NDN, CCN, CCNx, content centric networks
API Documentation
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
+
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
+
Typedefs
a
b
c
d
e
f
i
l
m
n
o
p
q
r
s
t
u
v
Enumerations
+
Enumerator
a
b
c
d
e
f
h
i
k
l
m
n
o
p
q
r
s
u
v
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
~
+
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
~
+
Variables
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
q
r
s
t
u
w
+
Typedefs
a
b
c
d
e
f
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
+
Enumerator
a
d
e
f
g
i
k
l
m
n
p
r
s
u
w
+
Related Functions
b
c
d
f
i
k
l
n
o
p
s
+
Files
File List
+
File Members
+
All
a
b
c
d
e
f
g
h
k
l
m
n
p
r
s
u
v
w
+
Functions
c
f
h
m
r
s
u
w
+
Variables
a
c
d
g
k
l
n
p
r
s
Typedefs
+
Macros
b
d
e
l
m
n
p
r
s
u
v
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
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 "common.hpp"
30
31
namespace
nfd
{
32
33
class
NameTree
;
34
namespace
name_tree {
35
class
Entry;
36
}
37
namespace
fw {
38
class
Strategy
;
39
}
40
41
namespace
strategy_choice {
42
45
class
Entry
: noncopyable
46
{
47
public
:
48
Entry
(
const
Name
& prefix);
49
50
const
Name
&
51
getPrefix()
const
;
52
53
const
Name
&
54
getStrategyName()
const
;
55
56
fw::Strategy
&
57
getStrategy()
const
;
58
59
void
60
setStrategy(
fw::Strategy
& strategy);
61
62
private
:
63
Name
m_prefix;
64
fw::Strategy
* m_strategy;
65
66
shared_ptr<name_tree::Entry> m_nameTreeEntry;
67
friend
class
nfd::NameTree
;
68
friend
class
nfd::name_tree::Entry
;
69
};
70
71
72
inline
const
Name
&
73
Entry::getPrefix
()
const
74
{
75
return
m_prefix;
76
}
77
78
inline
fw::Strategy
&
79
Entry::getStrategy()
const
80
{
81
BOOST_ASSERT(m_strategy !=
nullptr
);
82
return
*m_strategy;
83
}
84
85
inline
void
86
Entry::setStrategy(
fw::Strategy
& strategy)
87
{
88
m_strategy = &strategy;
89
}
90
91
}
// namespace strategy_choice
92
}
// namespace nfd
93
94
#endif // NFD_DAEMON_TABLE_STRATEGY_CHOICE_ENTRY_HPP
nfd::name_tree::Entry::getPrefix
const Name & getPrefix() const
Definition:
name-tree-entry.hpp:149
nfd::fw::Strategy
Strategy
Definition:
strategy.cpp:33
nfd
Copyright (c) 2011-2015 Regents of the University of California.
Definition:
ndn-common.hpp:40
nfd::NameTree
Class Name Tree.
Definition:
name-tree.hpp:79
ndn::Name
Name abstraction to represent an absolute name.
Definition:
name.hpp:46
nfd::strategy_choice::Entry
represents a Strategy Choice entry
Definition:
strategy-choice-entry.hpp:45
nfd::fw::Strategy
represents a forwarding strategy
Definition:
strategy.hpp:38
nfd::NameTree
NameTree
Definition:
name-tree.cpp:36
nfd::name_tree::Entry
Name Tree Entry Class.
Definition:
name-tree-entry.hpp:65
ndnSIM
NFD
daemon
table
strategy-choice-entry.hpp
Generated on Sat Nov 12 2016 16:02:54 for ndnSIM by
1.8.12