blob: da4bda7a017f8c4029c65d3a54b243c4fbebb89b [file] [log] [blame]
akmhoque87347a32014-01-31 11:00:44 -06001#ifndef NPL_HPP
2#define NPL_HPP
3
4#include<list>
5#include<string>
6#include <ndn-cpp-dev/face.hpp>
7
8using namespace std;
9
10class Npl{
11
12public:
13 Npl();
14 ~Npl();
15
16 int insertIntoNpl(string& name);
17 void printNpl();
18
19private:
20 std::list<string> nameList;
21
22};
23
24#endif