akmhoque | 87347a3 | 2014-01-31 11:00:44 -0600 | [diff] [blame^] | 1 | #include<iostream> |
| 2 | #include<algorithm> |
| 3 | |
| 4 | #include "npl.hpp" |
| 5 | |
| 6 | using namespace std; |
| 7 | |
| 8 | Npl::Npl(){ |
| 9 | |
| 10 | } |
| 11 | |
| 12 | Npl::~Npl(){ |
| 13 | |
| 14 | } |
| 15 | |
| 16 | static bool |
| 17 | nameCompare(string& s1, string& s2){ |
| 18 | return s1==s2; |
| 19 | } |
| 20 | |
| 21 | int |
| 22 | Npl::insertIntoNpl(string& name){ |
| 23 | std::list<string >::iterator it = std::find_if( nameList.begin(), |
| 24 | nameList.end(), |
| 25 | bind(&nameCompare, _1 , name)); |
| 26 | |
| 27 | if( it != nameList.end() ){ |
| 28 | return -1; |
| 29 | } |
| 30 | |
| 31 | nameList.push_back(name); |
| 32 | return 0; |
| 33 | |
| 34 | } |
| 35 | |
| 36 | void |
| 37 | Npl::printNpl(){ |
| 38 | for( std::list<string>::iterator it=nameList.begin(); it != nameList.end(); it++){ |
| 39 | cout<<"Name : "<<(*it)<<endl; |
| 40 | } |
| 41 | } |