blob: 878e4cc8ae6ebfe89fe56c775ce8a71e9b333a38 [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);
int getNplSize()
{
return nameList.size();
}
std::list<string>& getNameList()
{
return nameList;
}
void printNpl();
private:
std::list<string> nameList;
};
#endif