//: C06:FindBlanks.cpp // From "Thinking in C++, Volume 2", by Bruce Eckel & Chuck Allison. // (c) 1995-2004 MindView, Inc. All Rights Reserved. // See source code use permissions stated in the file 'License.txt', // distributed with the code package available at www.MindView.net. // Demonstrates mem_fun_ref() with string::empty(). #include #include #include #include #include #include #include #include "../require.h" using namespace std; typedef vector::iterator LSI; int main(int argc, char* argv[]) { char* fname = "FindBlanks.cpp"; if(argc > 1) fname = argv[1]; ifstream in(fname); assure(in, fname); vector vs; string s; while(getline(in, s)) vs.push_back(s); vector cpy = vs; // For testing LSI lsi = find_if(vs.begin(), vs.end(), mem_fun_ref(&string::empty)); while(lsi != vs.end()) { *lsi = "A BLANK LINE"; lsi = find_if(vs.begin(), vs.end(), mem_fun_ref(&string::empty)); } for(size_t i = 0; i < cpy.size(); i++) if(cpy[i].size() == 0) assert(vs[i] == "A BLANK LINE"); else assert(vs[i] != "A BLANK LINE"); } ///:~