declaring a vector to hold an abstract classyeah, you make a good point. I would worry that someone would look at the code and say "what the he...
declaring a vector to hold an abstract classI've tried using the boost library as jsmith suggested and it worked. However, in my line of work w...
string to integer coversionatoi takes a const char and you're inputing a string, just use [code] a = atoi(s.c_str());[/code]. ...
fstream tokens into a vectorIn general for reading from a file you'll want to use an ifstream. [code] #include <fstream> ifst...
declaring a vector to hold an abstract classThanks again for all the info. I'm still deciding on the final structure of my program, but this he...
This user does not accept Private Messages