commit | 87347a35f64a58af12a3877b04974884c6ed8d57 | [log] [tgz] |
---|---|---|
author | akmhoque <akmhoque@gmail.com> | Fri Jan 31 11:00:44 2014 -0600 |
committer | akmhoque <akmhoque@gmail.com> | Fri Jan 31 11:00:44 2014 -0600 |
tree | d99333a44c4b4e1467bf38777da44ebd5f97e6e5 | |
parent | fc31641858c272bdb3ad514740f2fea001dfafa9 [diff] [blame] |
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