First commit:CPP
diff --git a/npl.hpp b/npl.hpp
new file mode 100644
index 0000000..da4bda7
--- /dev/null
+++ b/npl.hpp
@@ -0,0 +1,24 @@
+#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