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