ifstream functor (C++ Primer Plus Exercise)GetStrs line 17: [quote]fin >> ch;[/quote] should be: [quote]fin.get(ch)[/quote] otherwise blank spa...
ifstream functor (C++ Primer Plus Exercise)Thanks sloppy9! I see where I was going wrong now, just one correction though - GetStrs: [quote]vis...
ifstream functor (C++ Primer Plus Exercise)So updating the Store class to the one below [code] #ifndef STORE_H_ #define STORE_H_ #include <fs...
ifstream functor (C++ Primer Plus Exercise)Thanks for all the help! I think for the most part this question is messed up, it asks me to make a...
ifstream functor (C++ Primer Plus Exercise)Hi So this is an exercise problem from C++ Primer Plus, I can't say I really understand the quest...