Gitiles
Code Review
Sign In
gerrit.named-data.net
/
NLSR
/
95b7c8cbff1f1c0b934ad08b08ca048a6951fc96
/
.
/
npl.hpp
blob: da4bda7a017f8c4029c65d3a54b243c4fbebb89b [
file
] [
log
] [
blame
]
#ifndef
NPL_HPP
#define
NPL_HPP
#include
<list>
#include
<string>
#include
<ndn-cpp-dev/face.hpp>
using
namespace
std
;
class
Npl
{
public
:
Npl
();
~
Npl
();
int
insertIntoNpl
(
string
&
name
);
void
printNpl
();
private
:
std
::
list
<string>
nameList
;
};
#endif